diff --git a/matsen-tool/src/app/_helpers/jwt.interceptor.ts b/matsen-tool/src/app/_helpers/jwt.interceptor.ts index b8005ed..85a2550 100644 --- a/matsen-tool/src/app/_helpers/jwt.interceptor.ts +++ b/matsen-tool/src/app/_helpers/jwt.interceptor.ts @@ -10,7 +10,6 @@ export class JwtInterceptor implements HttpInterceptor { constructor(private accountService: AccountService) { } intercept(request: HttpRequest, next: HttpHandler): Observable> { - console.log('intercept'); // add auth header with jwt if user is logged in and request is to the api url const user = this.accountService.userValue; const isLoggedIn = user && user.token;