From c5d59f468f63d8af3cc693ef7712de47a3f5fe7c Mon Sep 17 00:00:00 2001 From: oleksandrkit Date: Mon, 20 Jan 2025 15:50:50 +0200 Subject: [PATCH] Fix redirect loop --- src/app/app.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index d136d783..553f32bf 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -68,7 +68,6 @@ export class AppComponent implements OnInit { this.loggingService.log( 'User not logged in, redirecting to login page' ); - window.location.href = '/#/auth/login'; } else { this.loggingService.log('User is already logged in'); window.location.href = '/#/home';