From da9eaf2b8279d8968a73e22c159a8bfcba6c6a0a Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 8 Jul 2022 14:48:06 -0500 Subject: [PATCH] verifyCredentials: do alert on failure --- app/soapbox/actions/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/actions/auth.ts b/app/soapbox/actions/auth.ts index 5a5468e7f..e21974116 100644 --- a/app/soapbox/actions/auth.ts +++ b/app/soapbox/actions/auth.ts @@ -180,7 +180,7 @@ export const verifyCredentials = (token: string, accountUrl?: string) => { return account; } else { if (getState().me === null) dispatch(fetchMeFail(error)); - dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error, skipAlert: true }); + dispatch({ type: VERIFY_CREDENTIALS_FAIL, token, error }); throw error; } });