From cf0f3eecbc19b87855644072552d77eec064f6e6 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Fri, 3 Apr 2026 09:34:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5(frontend)=20remove=20UTM=20paramet?= =?UTF-8?q?ers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We decided to remove the UTM parameters. This change simplifies the link and makes it cleaner for users to share. --- .../src/features/docs/doc-management/hooks/useCopyDocLink.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'), );