This commit is contained in:
unknown 2018-06-14 13:56:26 -07:00
parent 63b79ccfb8
commit d09137357d
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ UIState uiReducer(UIState state, action) {
return state.rebuild((b) => b
..productUIState.replace(productUIReducer(state.productUIState, action))
..clientUIState.replace(clientUIReducer(state.clientUIState, action))
..invoiceUIState.replace(invoiceUIReducer(state.clientUIState, action))
..invoiceUIState.replace(invoiceUIReducer(state.invoiceUIState, action))
);
}