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
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:
parent
75de7d1370
commit
969e2ac0da
3 changed files with 24 additions and 15 deletions
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue