diff --git a/packages/webapp/src/components/registration-callback/index.tsx b/packages/webapp/src/components/registration-callback/index.tsx index 3c451d72..71248eb9 100644 --- a/packages/webapp/src/components/registration-callback/index.tsx +++ b/packages/webapp/src/components/registration-callback/index.tsx @@ -42,7 +42,7 @@ const RegistrationCallbackPage = (): React.ReactElement => { .then((result) => { if (result.googleSync) { // if service reports that user already has sync accounts, go to maps page - navigate('/c/maps'); + navigate('/c/maps/'); } setCallbackResult(result); }) @@ -57,7 +57,7 @@ const RegistrationCallbackPage = (): React.ReactElement => { client .confirmAccountSync(callbackResult.email, callbackResult.syncCode) .then(() => { - navigate('/c/maps'); + navigate('/c/maps/'); }) .catch((error) => { console.log('ERROR', error);