diff options
Diffstat (limited to 'modern/src/store/errors.js')
-rw-r--r-- | modern/src/store/errors.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modern/src/store/errors.js b/modern/src/store/errors.js deleted file mode 100644 index a484239a..00000000 --- a/modern/src/store/errors.js +++ /dev/null @@ -1,21 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit'; - -const { reducer, actions } = createSlice({ - name: 'errors', - initialState: { - errors: [], - }, - reducers: { - push(state, action) { - state.errors.push(action.payload); - }, - pop(state) { - if (state.errors.length) { - state.errors.shift(); - } - }, - }, -}); - -export { actions as errorsActions }; -export { reducer as errorsReducer }; |