From b98f7678d0127a687e3db10522a7544a453945b3 Mon Sep 17 00:00:00 2001 From: Jannik Date: Sat, 30 Aug 2025 10:12:44 +0200 Subject: [PATCH] feat: remove logging of JWT payloads --- src/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auth.ts b/src/auth.ts index a544e42..f74e230 100644 --- a/src/auth.ts +++ b/src/auth.ts @@ -31,7 +31,6 @@ export async function verifyToken(token: string): Promise { const pem = jwkToPem(key as JWK); try { const res = verify(token, pem, { algorithms: [key.alg] }); - console.log(res); return typeof res === "object" && "sub" in res; } catch (_err) { return false;