diff --git a/src/components/AuthPage/index.tsx b/src/components/AuthPage/index.tsx index 7678877..efc2e74 100644 --- a/src/components/AuthPage/index.tsx +++ b/src/components/AuthPage/index.tsx @@ -46,13 +46,13 @@ function AuthPage({ padLockApng }: AuthPageProps): JSX.Element { const handleAppleAuth = async () => { window.location.href = routes.server.appleAuth( - encodeURI(`${window.location.origin}/auth/result`) + encodeURI(`${window.location.origin}/auth/result/`) ); }; const handleGoogleAuth = async () => { window.location.href = routes.server.googleAuth( - encodeURI(`${window.location.origin}/auth/result`) + encodeURI(`${window.location.origin}/auth/result/`) ); };