Hello,
We are using react native package in our expo app and we have set mfaLevel to “none” in login parameters. Though we have not encounter this in multiple users but one of our testnet users was prompted with MFA screen and since then he was using that while login in testing environment.
Our concern is that why MFA screen was prompted even though it was not set from our side while calling login method.
Hope, if this is a bug then it is just within testnet enviornment. We want to make sure that our production users would never face MFA screen while login.
- SDK Version: 3.5.0
- Expo or Bare Version: Expo
code snippet
const info = await web3auth.login({
redirectUrl: Platform.OS === 'ios' ? resolvedRedirectUrl : resolvedRedirectUrlForAndroid,
mfaLevel: "none",
curve: "secp256k1",
extraLoginOptions: {
login_hint: provider == LOGIN_PROVIDER.EMAIL_PASSWORDLESS && loginHint
},
loginProvider: provider
});