VERIFY_CREDENTIALS_FAIL: skipAlert

This commit is contained in:
Alex Gleason 2021-10-19 09:32:15 -05:00
parent 7449c517a7
commit 5f183d38b1
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ export function verifyCredentials(token, accountUrl) {
return account; return account;
}).catch(error => { }).catch(error => {
if (getState().get('me') === null) dispatch(fetchMeFail(error)); if (getState().get('me') === null) dispatch(fetchMeFail(error));
dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error }); dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error, skipAlert: true });
}); });
}; };
} }