From 2b320b0f9e62bde3badf13fdde39fb2cf17ad70d Mon Sep 17 00:00:00 2001 From: Misi Date: Fri, 4 Oct 2024 19:06:06 +0200 Subject: [PATCH] Auth: Only apply redirection if the user is signed in (session storage redirection) (#94279) Fix: do not redirect if the user is not signed in --- public/app/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/app.ts b/public/app/app.ts index df42edc1df0..936b7b5293a 100644 --- a/public/app/app.ts +++ b/public/app/app.ts @@ -399,7 +399,6 @@ function handleRedirectTo(): void { } if (!contextSrv.user.isSignedIn) { - locationService.replace('/login'); return; }