diff --git a/src/app/guards/redirect-if-authenticated.guard.ts b/src/app/guards/redirect-if-authenticated.guard.ts index f11f841..cd17092 100644 --- a/src/app/guards/redirect-if-authenticated.guard.ts +++ b/src/app/guards/redirect-if-authenticated.guard.ts @@ -19,7 +19,6 @@ export class RedirectIfAuthenticatedGuard { return this.authService.checkAuthUser().pipe( map((isAuthenticated) => { if (isAuthenticated) { - this.router.navigate(['/summary']); return false; } return true;