diff --git a/src/routes/index.svelte b/src/routes/index.svelte index a77665c83..e9f851d20 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -27,7 +27,8 @@ const timer = setInterval(() => { if (newWindow?.closed) { clearInterval(timer); - browser && location.reload(); + // WHY need to navigate to / to get cookies?! + browser && window.location.replace('/') } }, 100); }