From 44c13d0185b6abcc02e59235775e3f4ccf61ca52 Mon Sep 17 00:00:00 2001 From: Melora Hugues Date: Sun, 20 Oct 2024 21:20:36 +0200 Subject: [PATCH] Fix remember-me --- polyculeconnect/static/scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polyculeconnect/static/scripts/index.js b/polyculeconnect/static/scripts/index.js index 1fdc2f3..670d679 100644 --- a/polyculeconnect/static/scripts/index.js +++ b/polyculeconnect/static/scripts/index.js @@ -42,6 +42,6 @@ function goBackToLogin() { window.location.href = nextURL; } -if (window.location.pathname === "/auth" && !urlParams.has(connectorIDParam)) { +if (window.location.pathname === "/authorize" && !urlParams.has(connectorIDParam)) { handleLoginPage(); }