From b22c4e1e3450c049b4ad5af63fc45e6ca8bac328 Mon Sep 17 00:00:00 2001 From: Erik Jan de Wit Date: Thu, 19 Dec 2024 08:45:23 +0100 Subject: [PATCH] remove added ? to url fixes : #36032 Signed-off-by: Erik Jan de Wit --- js/apps/account-ui/src/root/PageNav.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/apps/account-ui/src/root/PageNav.tsx b/js/apps/account-ui/src/root/PageNav.tsx index 09b0e6bab35f..2dbf7368b4aa 100644 --- a/js/apps/account-ui/src/root/PageNav.tsx +++ b/js/apps/account-ui/src/root/PageNav.tsx @@ -137,7 +137,7 @@ export const NavLink = ({ isActive, children, }: PropsWithChildren) => { - const menuItemPath = getFullUrl(path) + `?${location.search}`; + const menuItemPath = getFullUrl(path) + location.search; const href = useHref(menuItemPath); const handleClick = useLinkClickHandler(menuItemPath);