1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

flow: refactored reducer

This commit is contained in:
Fedor Katurov 2021-03-02 16:09:58 +07:00
parent 31b03f9eae
commit 64b27e517f

View file

@ -31,7 +31,7 @@ const INITIAL_STATE: IFlowState = {
is_loading_more: false,
},
is_loading: false,
error: null,
error: '',
};
export default createReducer(INITIAL_STATE, FLOW_HANDLERS);