Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Fix logging in with MFA (#5248)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilander committed Feb 1, 2017
1 parent be2841e commit fbba919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/user_actions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export function checkMfa(loginId, success, error) {
loginId,
(data) => {
if (success) {
success(data.mfa_required === 'true');
success(data);
}
},
(err) => {
Expand Down

0 comments on commit fbba919

Please sign in to comment.