From f53c02ead9da82db6dfeb9562bdab4b1e453a877 Mon Sep 17 00:00:00 2001 From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Date: Tue, 16 Dec 2025 21:12:38 +0100 Subject: [PATCH] Update lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx b/lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx index 84ebd0c6..b340ae87 100644 --- a/lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx +++ b/lib/src/Components/Profile/Subcomponents/TabsContainerForm.tsx @@ -71,7 +71,7 @@ export const TabsContainerForm = ({ item, state, setState, tabs, iconAsLabels = const params = new URLSearchParams(location.search) params.set('tab', `${index}`) const newUrl = location.pathname + '?' + params.toString() - navigate(newUrl, { replace: false }) + navigate(newUrl) }, [location.pathname, location.search, navigate], )