diff options
author | Matthew Miller <matthew@millerti.me> | 2022-09-28 21:14:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 21:14:32 -0700 |
commit | 8b75f0836e39df29b8593f96fb806608c2a81196 (patch) | |
tree | ba1d6e1346ba40cddc35f5a9c2f3ca68358eecc2 /packages/browser/src/methods/startAuthentication.ts | |
parent | e64b50cc84d49478d49e0a394511963d0110277b (diff) | |
parent | 4ea0bd370609294e3cf70f467d234093fc6e87fb (diff) |
Merge pull request #275 from MasterKale/fix/webauthn-abort-controller-race-condition
fix/webauthn-abort-controller-race-condition
Diffstat (limited to 'packages/browser/src/methods/startAuthentication.ts')
-rw-r--r-- | packages/browser/src/methods/startAuthentication.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts index 4cbe688..761a96c 100644 --- a/packages/browser/src/methods/startAuthentication.ts +++ b/packages/browser/src/methods/startAuthentication.ts @@ -80,8 +80,6 @@ export async function startAuthentication( credential = (await navigator.credentials.get(options)) as AuthenticationCredential; } catch (err) { throw identifyAuthenticationError({ error: err as Error, options }); - } finally { - webauthnAbortService.reset(); } if (!credential) { |