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

View file

@ -152,7 +152,7 @@ export function verifyCredentials(token, accountUrl) {
return account;
}).catch(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 });
});
};
}