diff options
author | Matthew Miller <matthew@millerti.me> | 2022-08-16 22:34:15 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-08-16 22:34:15 -0700 |
commit | 8432ac818889a7b36bbfb4c620365d0ea3189b0f (patch) | |
tree | 9d0e672bd72628a8edc8696b97d4a0aa789aa872 /packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts | |
parent | 2de1972b2461837a83a40a6bbb6cb51719002d3b (diff) |
Capitalize the "A" in "Webauthn"
Diffstat (limited to 'packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts')
-rw-r--r-- | packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts index af9cbcc..7dc1505 100644 --- a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts +++ b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts @@ -1,4 +1,4 @@ -import { browserSupportsWebauthn } from './browserSupportsWebauthn'; +import { browserSupportsWebAuthn } from './browserSupportsWebAuthn'; /** * Determine whether the browser can communicate with a built-in authenticator, like @@ -7,7 +7,7 @@ import { browserSupportsWebauthn } from './browserSupportsWebauthn'; * This method will _not_ be able to tell you the name of the platform authenticator. */ export async function platformAuthenticatorIsAvailable(): Promise<boolean> { - if (!browserSupportsWebauthn()) { + if (!browserSupportsWebAuthn()) { return false; } |