summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--assets/preload-plugins/loginRedirect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/preload-plugins/loginRedirect.js b/assets/preload-plugins/loginRedirect.js
index 695515b3..c527d79d 100644
--- a/assets/preload-plugins/loginRedirect.js
+++ b/assets/preload-plugins/loginRedirect.js
@@ -5,7 +5,7 @@ const redirectIfOnLogin = () => {
 	const path = window.location.pathname;
 	if (path == "/login" || path == "/register" || !localStorage.getItem("token")) {
 		window.location.pathname = "/login";
-		window.location.reload();
+		//window.location.reload();
 	}
 };