From b09762afeb2aeeb675d9420a88eadfa4febd14a7 Mon Sep 17 00:00:00 2001 From: Evan Enochs Date: Sat, 14 Mar 2026 16:32:27 -0400 Subject: [PATCH] fix(sso): fix typecheck error in saml test --- packages/sso/src/saml.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sso/src/saml.test.ts b/packages/sso/src/saml.test.ts index e420e20330..96d5e45f05 100644 --- a/packages/sso/src/saml.test.ts +++ b/packages/sso/src/saml.test.ts @@ -2250,7 +2250,7 @@ describe("SAML SSO", async () => { const deflatedBuffer = Buffer.from(samlRequestParam, "base64"); const xml = inflateRawSync(deflatedBuffer).toString("utf-8"); const idMatch = xml.match(/ID="([^"]+)"/); - const authnRequestId = idMatch![1]; + const authnRequestId = idMatch![1] as string; let samlResponse: any; await betterFetch(