From 8432ac818889a7b36bbfb4c620365d0ea3189b0f Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 16 Aug 2022 22:34:15 -0700 Subject: Capitalize the "A" in "Webauthn" --- packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/browser/src/helpers/platformAuthenticatorIsAvailable.ts') 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 { - if (!browserSupportsWebauthn()) { + if (!browserSupportsWebAuthn()) { return false; } -- cgit v1.2.3