diff options
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r-- | packages/browser/src/methods/startAuthentication.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts index a568289..7887228 100644 --- a/packages/browser/src/methods/startAuthentication.ts +++ b/packages/browser/src/methods/startAuthentication.ts @@ -17,12 +17,12 @@ import { webauthnAbortService } from '../helpers/webAuthnAbortService'; * Begin authenticator "login" via WebAuthn assertion * * @param requestOptionsJSON Output from **@simplewebauthn/server**'s generateAssertionOptions(...) - * @param supportBrowserAutofill Initialize conditional UI to enable logging in via browser + * @param useBrowserAutofill Initialize conditional UI to enable logging in via browser * autofill prompts */ export async function startAuthentication( requestOptionsJSON: PublicKeyCredentialRequestOptionsJSON, - supportBrowserAutofill = false, + useBrowserAutofill = false, ): Promise<AuthenticationCredentialJSON> { if (!browserSupportsWebauthn()) { throw new Error('WebAuthn is not supported in this browser'); @@ -49,7 +49,7 @@ export async function startAuthentication( * Set up the page to prompt the user to select a credential for authentication via the browser's * input autofill mechanism. */ - if (supportBrowserAutofill) { + if (useBrowserAutofill) { if (!(await browserSupportsWebAuthnAutofill())) { throw Error('Browser does not support WebAuthn autofill'); } |