Use the composable useSignInEmailSecurityKey to sign in a user using their email and a security key using the WebAuthn API.

const {
  signInEmailSecurityKey,
  needsEmailVerification,
  isLoading,
  isSuccess,
  isError,
  error
} = useSignInEmailSecurityKey()

console.log({ needsEmailVerification, isLoading, isSuccess, isError, error })

const handleFormSubmit = async (e) => {
  e.preventDefault()

  await signInEmailSecurityKey('joe@example.com')
}