From 5f183d38b16a084746e3a79b732943bcd8b0229d Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 19 Oct 2021 09:32:15 -0500 Subject: [PATCH] VERIFY_CREDENTIALS_FAIL: skipAlert --- app/soapbox/actions/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }); }); }; }