From 792aca1b28f971845ceb0d9359c0f6176a70109c Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Wed, 10 Sep 2025 12:55:23 +0200 Subject: [PATCH] Fix login page redirection when already authenticated --- src/features/authentication/screens/LoginPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/authentication/screens/LoginPage.tsx b/src/features/authentication/screens/LoginPage.tsx index dc3e7f80..1707f777 100644 --- a/src/features/authentication/screens/LoginPage.tsx +++ b/src/features/authentication/screens/LoginPage.tsx @@ -60,7 +60,7 @@ export const LoginPage = () => { return () => setOverride({ status: false, value: null }); }, []); - if (false && isAuthenticated) { + if (isAuthenticated) { return ; }