You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have below code where I am trying to retrieve the stored username and password on the site. This works completely alright in Chrome popping up options for me to select from the list of credentials but fire fox returns "TypeError: CredentialsContainer.get: Missing required 'challenge' member of PublicKeyCredentialRequestOptions." when I am not even requesting for the public-key signature.
I have below code where I am trying to retrieve the stored username and password on the site. This works completely alright in Chrome popping up options for me to select from the list of credentials but fire fox returns "TypeError: CredentialsContainer.get: Missing required 'challenge' member of PublicKeyCredentialRequestOptions." when I am not even requesting for the public-key signature.
const param: CredentialRequestOptions = {
password: true,
mediation: 'required',
};
navigator.credentials.get(param);
The text was updated successfully, but these errors were encountered: