From b191c9fdb36ca7c4e1bd486d10a8302e6d796a35 Mon Sep 17 00:00:00 2001 From: Gautam Anand Date: Tue, 15 Oct 2024 17:53:46 -0500 Subject: [PATCH] ahh --- components/auth/auth.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/auth/auth.js b/components/auth/auth.js index 4d669e63..2a97b17e 100644 --- a/components/auth/auth.js +++ b/components/auth/auth.js @@ -9,6 +9,9 @@ let session = false; export function signOut() { window.localStorage.removeItem("wg_secret"); session = null; + if(window.dontReconnect) { + return; + } window.location.reload(); }