0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

fix(core): remove user verification requirement for webauthn (#4751)

This commit is contained in:
wangsijie 2023-10-27 11:50:49 +08:00 committed by GitHub
parent 85a39c35d7
commit 752d02b316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ export const verifyWebAuthnRegistration = async (
expectedChallenge: challenge, expectedChallenge: challenge,
expectedOrigin: origin, expectedOrigin: origin,
expectedRPID: rpId, expectedRPID: rpId,
requireUserVerification: true, requireUserVerification: false,
}; };
return verifyRegistrationResponse(options); return verifyRegistrationResponse(options);
}; };