diff options
Diffstat (limited to 'packages/browser/src/methods/startAssertion.ts')
-rw-r--r-- | packages/browser/src/methods/startAssertion.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/browser/src/methods/startAssertion.ts b/packages/browser/src/methods/startAssertion.ts index 09e416f..fbc6f59 100644 --- a/packages/browser/src/methods/startAssertion.ts +++ b/packages/browser/src/methods/startAssertion.ts @@ -25,7 +25,12 @@ export default async function startAssertion( const publicKey: PublicKeyCredentialRequestOptions = { ...requestOptionsJSON, challenge: base64URLStringToBuffer(requestOptionsJSON.challenge), - allowCredentials: requestOptionsJSON.allowCredentials.map(toPublicKeyCredentialDescriptor), + // We need to avoid passing empty array to avoid blocking retrieval + // of public key + allowCredentials: + requestOptionsJSON.allowCredentials?.length === 0 + ? undefined + : requestOptionsJSON.allowCredentials?.map(toPublicKeyCredentialDescriptor), }; // Wait for the user to complete assertion |