aboutsummaryrefslogtreecommitdiff
path: root/modern
diff options
context:
space:
mode:
Diffstat (limited to 'modern')
-rw-r--r--modern/src/store/errors.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/store/errors.js b/modern/src/store/errors.js
index d1b86e5a..a484239a 100644
--- a/modern/src/store/errors.js
+++ b/modern/src/store/errors.js
@@ -9,7 +9,7 @@ const { reducer, actions } = createSlice({
push(state, action) {
state.errors.push(action.payload);
},
- pop(state, _) {
+ pop(state) {
if (state.errors.length) {
state.errors.shift();
}