From 4d19901ad06301bf16cb8d3e55b33a2f33967755 Mon Sep 17 00:00:00 2001 From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Date: Tue, 16 Dec 2025 21:12:30 +0100 Subject: [PATCH] Update lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx b/lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx index df653e95..5cc139cb 100644 --- a/lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx +++ b/lib/src/Components/Profile/Subcomponents/TabsContainerView.tsx @@ -71,7 +71,7 @@ export const TabsContainerView = ({ item, tabs = [], iconAsLabels = false }: Pro 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], )