From dfb32f4891f6c955c25b2f305fa702cdaf8c5a5e Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Fri, 18 Aug 2023 11:11:56 -0700 Subject: Format browser --- packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts') diff --git a/packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts b/packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts index afc1176..b3b1e86 100644 --- a/packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts +++ b/packages/browser/src/helpers/browserSupportsWebAuthnAutofill.ts @@ -1,4 +1,4 @@ -import { PublicKeyCredentialFuture } from '@simplewebauthn/typescript-types'; +import { PublicKeyCredentialFuture } from "@simplewebauthn/typescript-types"; /** * Determine if the browser supports conditional UI, so that WebAuthn credentials can @@ -11,8 +11,8 @@ export async function browserSupportsWebAuthnAutofill(): Promise { * want. I think I'm fine with this for now since it's _supposed_ to be temporary, until TS types * have a chance to catch up. */ - const globalPublicKeyCredential = - window.PublicKeyCredential as unknown as PublicKeyCredentialFuture; + const globalPublicKeyCredential = window + .PublicKeyCredential as unknown as PublicKeyCredentialFuture; return ( globalPublicKeyCredential.isConditionalMediationAvailable !== undefined && -- cgit v1.2.3