I don't run a very critical application so I would like my users to skip MFA
Originally posted by: 1swaraj
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/317
I don't run a very critical application so I would like my users to skip MFA
Yes, you can skip mfa if you want. Web3Auth's OpenloginAdapter accepts mfaLevel
parameter in constructor to configure the display of mfa screen:-
Currently following values are supported:-
You can read more about it here: https://web3auth.io/docs/sdk/web/core/usage#openloginloginparams
For web3auth/web3auth
, use the below code to disable the 2fa flow.
const openloginAdapter = new OpenloginAdapter({ loginSettings: { mfaLevel: "none", }, });
See https://web3auth.io/docs/sdk/web/openlogin#multi-factor-authentication