From 9eddeb1b97a11cfe60a05fa506330837ede6c278 Mon Sep 17 00:00:00 2001 From: Illusion4 Date: Thu, 31 Aug 2023 19:42:54 +0300 Subject: [PATCH] Fix warnings --- frontend/src/app/app.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts index c8571a5fa..ac72ab2cd 100644 --- a/frontend/src/app/app.component.ts +++ b/frontend/src/app/app.component.ts @@ -26,8 +26,7 @@ export class AppComponent { this.spinner.hide(); } if (event instanceof NavigationStart) { - this.isAuthPage = event.url.startsWith('/auth') || event.url === '/' - + this.isAuthPage = event.url.startsWith('/auth') || event.url === '/'; } }); }