From ad5e7119317ab5915c7063b575e2bdd4fe263f9e Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 27 Dec 2022 21:38:27 -0800 Subject: Lint everything --- packages/browser/src/helpers/toAuthenticatorAttachment.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/browser/src/helpers/toAuthenticatorAttachment.ts') diff --git a/packages/browser/src/helpers/toAuthenticatorAttachment.ts b/packages/browser/src/helpers/toAuthenticatorAttachment.ts index 7a2aca0..366cf8f 100644 --- a/packages/browser/src/helpers/toAuthenticatorAttachment.ts +++ b/packages/browser/src/helpers/toAuthenticatorAttachment.ts @@ -5,7 +5,9 @@ const attachments: AuthenticatorAttachment[] = ['cross-platform', 'platform']; /** * If possible coerce a `string` value into a known `AuthenticatorAttachment` */ -export function toAuthenticatorAttachment(attachment: string | null): AuthenticatorAttachment | undefined { +export function toAuthenticatorAttachment( + attachment: string | null, +): AuthenticatorAttachment | undefined { if (!attachment) { return; } -- cgit v1.2.3