style: format HTML and TypeScript files
All checks were successful
CI / Get Changed Files (pull_request) Successful in 26s
CI / eslint (pull_request) Successful in 51s
CI / oxlint (pull_request) Successful in 41s
CI / prettier (pull_request) Successful in 52s
CI / Docker frontend validation (pull_request) Successful in 1m46s
CI / Docker backend validation (pull_request) Successful in 29s
CI / Checkstyle Main (pull_request) Successful in 2m44s
CI / test-build (pull_request) Successful in 1m1s

This commit is contained in:
Constantin Simonis 2025-05-21 11:00:01 +02:00
commit 969e2ac0da
No known key found for this signature in database
GPG key ID: 3878FF77C24AF4D2
3 changed files with 24 additions and 15 deletions

View file

@ -29,7 +29,7 @@ export class AuthService {
this.userSubject = new BehaviorSubject<User | null>(this.getUserFromStorage());
// Check for token in URL (OAuth callback) on initialization
this.route.queryParams.subscribe(params => {
this.route.queryParams.subscribe((params) => {
const token = params['token'];
if (token) {
this.handleOAuthCallback(token);
@ -48,7 +48,7 @@ export class AuthService {
this.router.navigate([], {
relativeTo: this.route,
queryParams: {},
replaceUrl: true
replaceUrl: true,
});
}