diff --git a/frontend/src/app/services/auth.service.ts b/frontend/src/app/services/auth.service.ts index d1bd802..53883e6 100644 --- a/frontend/src/app/services/auth.service.ts +++ b/frontend/src/app/services/auth.service.ts @@ -31,6 +31,8 @@ export class AuthService { public login(code: string): Observable { return this.loginService.login(code).pipe( tap(jwt => { + console.log(jwt); + console.log(atob(jwt)); this.saveJwt(atob(jwt)); //Decode jwt from base64 this.isAuthenticatedSubject.next(true); }),