Inline a handler for consistency's sake
This commit is contained in:
parent
bdff46ec1d
commit
4cc6834186
@ -24,13 +24,7 @@ const access = handleActions(
|
|||||||
|
|
||||||
[actions.setAccessListRequest]: (state) => ({ ...state, processingSet: true }),
|
[actions.setAccessListRequest]: (state) => ({ ...state, processingSet: true }),
|
||||||
[actions.setAccessListFailure]: (state) => ({ ...state, processingSet: false }),
|
[actions.setAccessListFailure]: (state) => ({ ...state, processingSet: false }),
|
||||||
[actions.setAccessListSuccess]: (state) => {
|
[actions.setAccessListSuccess]: (state) => ({ ...state, processingSet: false }),
|
||||||
const newState = {
|
|
||||||
...state,
|
|
||||||
processingSet: false,
|
|
||||||
};
|
|
||||||
return newState;
|
|
||||||
},
|
|
||||||
|
|
||||||
[actions.toggleClientBlockRequest]: (state) => ({ ...state, processingSet: true }),
|
[actions.toggleClientBlockRequest]: (state) => ({ ...state, processingSet: true }),
|
||||||
[actions.toggleClientBlockFailure]: (state) => ({ ...state, processingSet: false }),
|
[actions.toggleClientBlockFailure]: (state) => ({ ...state, processingSet: false }),
|
||||||
|
Loading…
Reference in New Issue
Block a user