diff --git a/app/screens/login/login.js b/app/screens/login/login.js index 5e30feb77..c5b92c3a1 100644 --- a/app/screens/login/login.js +++ b/app/screens/login/login.js @@ -174,7 +174,7 @@ class Login extends PureComponent { if (this.props.config.EnableMultifactorAuthentication === 'true') { this.props.actions.checkMfa(this.props.loginId).then((result) => { - if (result) { + if (result.data) { this.goToMfa(); } else { this.signIn();