🔥(frontend) remove UTM parameters

We decided to remove the UTM parameters.
This change simplifies the link and makes
it cleaner for users to share.
This commit is contained in:
Anthony LC
2026-04-03 09:34:02 +02:00
parent 4b4319d5af
commit cf0f3eecbc

View File

@@ -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'),
);