diff --git a/frontend/src/app/services/auth.service.ts b/frontend/src/app/services/auth.service.ts index ad8dad8..bfbcec5 100644 --- a/frontend/src/app/services/auth.service.ts +++ b/frontend/src/app/services/auth.service.ts @@ -47,11 +47,14 @@ export class AuthService { } private reloadUsername() { + console.log("Reloading username"); this.loginService.getUsername().pipe( tap(username => { + console.log("Username: ", username); this._username.set(username.username); }), catchError(error => { + console.log("Error: ", error); return throwError(() => error); }) )