diff options
author | Matthew Miller <matthew@millerti.me> | 2023-10-02 23:10:47 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-10-02 23:10:47 -0700 |
commit | 24830ec796113333594832216c4cdda9843c46f7 (patch) | |
tree | 3864db81f0a39bd6937963f15ff0cf1c0a557442 /packages/browser/src/methods/startAuthentication.ts | |
parent | 5e0079f2304428a58cc2fc7118f329b40c403b52 (diff) |
Tweak error message
Diffstat (limited to 'packages/browser/src/methods/startAuthentication.ts')
-rw-r--r-- | packages/browser/src/methods/startAuthentication.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts index 2c95a34..fdf14bf 100644 --- a/packages/browser/src/methods/startAuthentication.ts +++ b/packages/browser/src/methods/startAuthentication.ts @@ -65,7 +65,7 @@ export async function startAuthentication( // WebAuthn autofill requires at least one valid input if (eligibleInputs.length < 1) { throw Error( - 'No <input> with `"webauthn"` as the only or last value in its `autocomplete` attribute was detected', + 'No <input> with "webauthn" as the only or last value in its `autocomplete` attribute was detected', ); } |