diff --git a/src/frontend/apps/impress/src/features/docs/doc-management/hooks/useCopyDocLink.tsx b/src/frontend/apps/impress/src/features/docs/doc-management/hooks/useCopyDocLink.tsx index 4d54c55c2..a202a3647 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-management/hooks/useCopyDocLink.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-management/hooks/useCopyDocLink.tsx @@ -11,7 +11,7 @@ export const useCopyDocLink = (docId: Doc['id']) => { return useCallback(() => { copyToClipboard( - `${window.location.origin}/docs/${docId}/?utm_source=docssharelink&utm_campaign=${docId}`, + `${window.location.origin}/docs/${docId}/`, t('Link Copied !'), t('Failed to copy link'), );