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 4589e34 commit d1ba7d9Copy full SHA for d1ba7d9
packages/core/auth-js/src/lib/webauthn.ts
@@ -462,13 +462,14 @@ export const DEFAULT_CREATION_OPTIONS: Partial<PublicKeyCredentialCreationOption
462
userVerification: 'preferred',
463
residentKey: 'discouraged',
464
},
465
- attestation: 'none',
+ attestation: 'direct',
466
}
467
468
export const DEFAULT_REQUEST_OPTIONS: Partial<PublicKeyCredentialRequestOptionsFuture> = {
469
/** set to preferred because older yubikeys don't have PIN/Biometric */
470
471
hints: ['security-key'],
472
473
474
475
function deepMerge<T>(...sources: Partial<T>[]): T {
0 commit comments