aboutsummaryrefslogtreecommitdiff
path: root/modern/src/store/errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/store/errors.js')
-rw-r--r--modern/src/store/errors.js21
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 };