chore: fix eslint errors introduced in phase 4 backend

This commit is contained in:
Gabriel Brown
2026-07-11 15:37:51 -04:00
parent 75d7592cf3
commit 0347d58f71
3 changed files with 22 additions and 21 deletions
@@ -17,7 +17,7 @@ export const verifyGithubSignature = async (
rawBody: string,
signatureHeader: string | null,
): Promise<boolean> => {
if (!signatureHeader || !signatureHeader.startsWith('sha256=')) return false;
if (!signatureHeader?.startsWith('sha256=')) return false;
// Web Crypto's importKey throws on a zero-length HMAC key; guard so the
// verifier never throws on attacker-controlled input (returns false instead).
if (!secret) return false;