We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ea759 commit 0dbf7f5Copy full SHA for 0dbf7f5
src/shared/modules/global/jwt.service.ts
@@ -94,7 +94,6 @@ export class JwtService implements OnModuleInit {
94
// Get the signing key from Auth0
95
const signingKey = await this.getSigningKey(tokenHeader.kid);
96
97
-
98
console.log(`Signing key: ${JSON.stringify(signingKey)}`);
99
100
// Verify options
@@ -114,7 +113,6 @@ export class JwtService implements OnModuleInit {
114
113
} else {
115
// In development, just decode the token without verification
116
decodedToken = decode(token);
117
118
}
119
120
if (!decodedToken) {
0 commit comments