diff --git a/apps/web/src/pages/analytics-consent-page.tsx b/apps/web/src/pages/analytics-consent-page.tsx index 7c00e2f3..0d3bc7b9 100644 --- a/apps/web/src/pages/analytics-consent-page.tsx +++ b/apps/web/src/pages/analytics-consent-page.tsx @@ -30,12 +30,12 @@ export function AnalyticsConsentPage() { const handleAccept = async () => { await acceptAnalytics(); - navigate("/", { replace: true }); + window.location.href = "/"; }; const handleDecline = async () => { await remindLater(); - navigate("/", { replace: true }); + window.location.href = "/"; }; return (