From 67d82a1eaa65477a17959de16a0ec522be73c968 Mon Sep 17 00:00:00 2001 From: Josh Dassinger Date: Thu, 7 Nov 2024 08:48:41 -0600 Subject: [PATCH] SSR-1724 Attempt to fix apple devices --- src/router/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router/index.js b/src/router/index.js index 1b8deda3..ba20bf96 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -153,6 +153,7 @@ router.beforeEach(async (to, from) => { // especially when navigating with browser buttons const newUrl = `${window.top.location.origin}${to.href}`; window.top.location.href = newUrl; + return false; } const store = useMainStore();