Skip to content

Commit

Permalink
Fix invitation page (#1111)
Browse files Browse the repository at this point in the history
  • Loading branch information
joanagmaia authored Jul 13, 2023
1 parent a80492e commit 3853507
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/modules/auth/auth-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default [
name: 'auth',
path: '/auth',
component: AuthLayout,
redirect: '/auth/signup',
redirect: '/auth/signin',
children: [
{
name: 'signin',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/modules/auth/pages/invitation-page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
if (!this.signedIn) {
AuthInvitationToken.set(token);
router.push('/auth/signup');
router.push('/auth/signin');
return;
}
Expand Down

0 comments on commit 3853507

Please sign in to comment.