From 41b0c38c94a959662cb3dfc58db73e5d1e7037e0 Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Fri, 28 Apr 2023 11:09:04 +0200 Subject: [PATCH] [EC-598] fix: reponse not correctly polyfilled --- apps/browser/src/fido2/content/page-script.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/browser/src/fido2/content/page-script.ts b/apps/browser/src/fido2/content/page-script.ts index e72b2f24441..f53aa0a2d4f 100644 --- a/apps/browser/src/fido2/content/page-script.ts +++ b/apps/browser/src/fido2/content/page-script.ts @@ -25,6 +25,7 @@ if (!browserNativeWebauthnSupport) { return Promise.resolve(true); } } as any; + window.AuthenticatorAttestationResponse = class {} as any; } catch { /* empty */ }