We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a693f7 commit 756d31dCopy full SHA for 756d31d
docs/pages/getting-started/providers/passkey.mdx
@@ -212,3 +212,21 @@ export default function Login() {
212
## Options
213
214
You can find all of the Passkeys provider options under the [API reference](/reference/core/providers/webauthn#webauthnconfig).
215
+
216
+## Notes
217
218
+- If you only pass a field named `username`, like below. 1Password **will not** offer to save new Passkeys in your login form.
219
220
+```ts filename="@/auth.ts" /username/
221
+providers = [
222
+ Passkey({
223
+ formFields: {
224
+ username: {
225
+ label: "Username",
226
+ required: true,
227
+ autocomplete: "webauthn username",
228
+ },
229
230
+ }),
231
+]
232
+```
0 commit comments