From f117cb24773fafc197f52df281ec356d3cccb2dd Mon Sep 17 00:00:00 2001 From: akastijn Date: Fri, 24 Oct 2025 19:52:26 +0200 Subject: [PATCH] Remove debug `console.log` statements from `auth.service.ts`. --- frontend/src/app/services/auth.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/app/services/auth.service.ts b/frontend/src/app/services/auth.service.ts index 8e6f475..f33cfec 100644 --- a/frontend/src/app/services/auth.service.ts +++ b/frontend/src/app/services/auth.service.ts @@ -82,7 +82,6 @@ export class AuthService { } const claims = this.extractJwtClaims(jwt); - console.log("User claims: ", claims); this.userClaimsSubject.set(claims); this.isAuthenticatedSubject.set(true); if (this.username() == null) { @@ -109,7 +108,6 @@ export class AuthService { localStorage.setItem('jwt', jwt); const claims = this.extractJwtClaims(jwt); - console.log("Saving user claims: ", claims); this.userClaimsSubject.set(claims); }