From ad88aa893f03db2bd257f8f7826b1da910c162bc Mon Sep 17 00:00:00 2001 From: mehrzadghdev Date: Fri, 22 Aug 2025 00:53:47 +0330 Subject: [PATCH] hotfix: return url alert remove --- .../components/AuthenticationSteps/AuthenticationSteps.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/features/authentication/components/AuthenticationSteps/AuthenticationSteps.tsx b/src/features/authentication/components/AuthenticationSteps/AuthenticationSteps.tsx index a2511e0..841c0c3 100644 --- a/src/features/authentication/components/AuthenticationSteps/AuthenticationSteps.tsx +++ b/src/features/authentication/components/AuthenticationSteps/AuthenticationSteps.tsx @@ -86,7 +86,6 @@ export const AuthenticationSteps = (): JSX.Element => { if (authMode === 'register') { navigate(`/account-created?returnUrl=${authReturnUrlWithRefreshToken}`); } else { - alert(authReturnUrlWithRefreshToken); location.href = authReturnUrlWithRefreshToken; } }