diff --git a/app/soapbox/actions/auth.js b/app/soapbox/actions/auth.js index af58f6acf..68b60205c 100644 --- a/app/soapbox/actions/auth.js +++ b/app/soapbox/actions/auth.js @@ -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 }); }); }; }