Skip to content

Commit

Permalink
MAT-6726 fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-akins committed Mar 12, 2024
1 parent 85801be commit 9cc38f0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/auth/auth.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export class AuthGuard implements CanActivate {
constructor(private jwtService: JwtService) {}

async canActivate(context: ExecutionContext): Promise<boolean> {
console.log('Key ', process.env.JWT_SECRET);
const request = context.switchToHttp().getRequest();
const token = this.extractTokenFromHeader(request);
if (!token) {
Expand Down

0 comments on commit 9cc38f0

Please sign in to comment.