Skip to content

Commit ea98155

Browse files
committed
fix: eslint error
1 parent e68dcc2 commit ea98155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jwt-verification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export async function waitForJwksReady(): Promise<void> {
6161
try {
6262
// Try a dummy verification with an invalid token
6363
// We only care that JWKS fetch succeeds, not that the token is valid
64-
const invalidJWT = 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.invalid_signature'
64+
const invalidJWT = 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.invalid_signature'
6565
await verifyJwt(invalidJWT)
6666
} catch (err: any) {
6767
// If we get a JWT verification error, JWKS successfully fetched and processed the token

0 commit comments

Comments
 (0)