From 7bd4ff2374d78ddfae4d2d0111033d9ef6973e75 Mon Sep 17 00:00:00 2001 From: Satbir Singh Date: Mon, 13 Apr 2020 15:47:50 +0530 Subject: [PATCH] Remove FETCH_USER_ERROR message --- app/client/src/sagas/userSagas.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/client/src/sagas/userSagas.tsx b/app/client/src/sagas/userSagas.tsx index 9449d2f8a8..250dabcc5d 100644 --- a/app/client/src/sagas/userSagas.tsx +++ b/app/client/src/sagas/userSagas.tsx @@ -288,14 +288,6 @@ export function* fetchUserSaga(action: ReduxAction) { return yield false; } catch (error) { console.log(error); - if (error) { - yield put({ - type: ReduxActionErrorTypes.FETCH_USER_ERROR, - payload: { - error, - }, - }); - } } }