alse, profile: "", }; function throttlingReducer(state = INITIAL_STATE, action) { switch (action.type) { case CHANGE_NETWORK_THROTTLING: { return { enabled: action.enabled, profile: action.profile, }; } default: return state; } } module.exports = throttlingReducer; PK