diff --git a/src/reducers/auth.js b/src/reducers/auth.js index 04776859..6a47ef4b 100644 --- a/src/reducers/auth.js +++ b/src/reducers/auth.js @@ -8,7 +8,6 @@ const auth = (state = null, action) => { case AUTH_SUCCESS: return Immutable.fromJS({ user: action.payload }); case AUTH_FAILURE: - console.error(action.payload); return Immutable.Map({ error: action.payload.toString() }); default: return state;