From bc246317fc06b9a5fb08e15c2772db816a342183 Mon Sep 17 00:00:00 2001 From: TSLA Date: Mon, 29 Sep 2025 20:38:09 +0300 Subject: [PATCH] Fix: Removed filtering hash part in subscription link --- .../construct-subscription-url/construct-subscription-url.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/shared/utils/construct-subscription-url/construct-subscription-url.tsx b/frontend/src/shared/utils/construct-subscription-url/construct-subscription-url.tsx index 42e13c2..354647c 100644 --- a/frontend/src/shared/utils/construct-subscription-url/construct-subscription-url.tsx +++ b/frontend/src/shared/utils/construct-subscription-url/construct-subscription-url.tsx @@ -4,7 +4,6 @@ export const constructSubscriptionUrl = (currentUrl: string, shortUuid: string): const url = parseURL(currentUrl) url.search = '' - url.hash = '' url.auth = '' const segments = url.pathname.split('/').filter(Boolean)