Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Illusion4 committed Aug 31, 2023
1 parent b16156c commit 9eddeb1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 === '/';
}
});
}
Expand Down

0 comments on commit 9eddeb1

Please sign in to comment.