Merge branch '401-skip-alert' into 'develop'

VERIFY_CREDENTIALS_FAIL: skipAlert

See merge request soapbox-pub/soapbox-fe!794
merge-requests/795/merge
Alex Gleason 3 years ago
commit 07f1e4cc18

@ -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 });
});
};
}

Loading…
Cancel
Save