From eecc534ad384f1a14f6048bb27538cf3a9ce7cda Mon Sep 17 00:00:00 2001 From: Rakib Ansary Date: Fri, 17 Mar 2023 16:01:50 +0600 Subject: [PATCH] fix: landing url Signed-off-by: Rakib Ansary --- src/shared/components/Settings/Account/MyPrimaryRole/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/Settings/Account/MyPrimaryRole/index.jsx b/src/shared/components/Settings/Account/MyPrimaryRole/index.jsx index 79100e28d..2bad1b286 100644 --- a/src/shared/components/Settings/Account/MyPrimaryRole/index.jsx +++ b/src/shared/components/Settings/Account/MyPrimaryRole/index.jsx @@ -30,7 +30,7 @@ const MyPrimaryRole = ({ const AUTH_URL = config.URL.AUTH; const handleSignoutClick = () => { - window.location.href = `${AUTH_URL}?logout=true&retUrl=${encodeURIComponent(config.URL.COMMUNITY_APP)}`; + window.location.href = `${AUTH_URL}?logout=true&retUrl=${encodeURIComponent(config.URL.BASE)}`; }; return (