Merge branch 'fix/rem-fetch-user' into 'release'

Remove FETCH_USER_ERROR message

See merge request theappsmith/internal-tools-client!480
This commit is contained in:
Satbir Singh 2020-04-13 10:50:24 +00:00
commit 61431eb75f

View File

@ -288,14 +288,6 @@ export function* fetchUserSaga(action: ReduxAction<FetchUserRequest>) {
return yield false;
} catch (error) {
console.log(error);
if (error) {
yield put({
type: ReduxActionErrorTypes.FETCH_USER_ERROR,
payload: {
error,
},
});
}
}
}