Skip to content

Commit

Permalink
fix: ensure that timeout state not re-routed
Browse files Browse the repository at this point in the history
  • Loading branch information
macite committed Jul 20, 2023
1 parent 82425c7 commit c16ee90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/sessions/transition-hooks.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ export class TransitionHooksService {
case 'home':
this.globalState.goHome();
break;
case 'timeout':
// return as this state should always succeed to enable auth fails
return;
default:
break;
}
Expand Down

0 comments on commit c16ee90

Please sign in to comment.