From 84062f2ed0e9953c5c3830d792a60577ddb3ebe4 Mon Sep 17 00:00:00 2001 From: enes Date: Tue, 31 Dec 2024 12:59:41 +0100 Subject: [PATCH] fix(login): redirect to landing instead of login popup page --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 9f58f21..11434af 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -33,7 +33,7 @@ const App = () => { window.location.href.split(`${window.location.origin}/#`)[1] ) - return `${appPublicRoutes.login}?callbackPath=${callbackPathEncoded}` + return `${appPublicRoutes.landingPage}?callbackPath=${callbackPathEncoded}` } // Hide route only if loggedIn and r.hiddenWhenLoggedIn are both true