From c59d1418df08f9fbb4edb131b54d9f5947893388 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 21 May 2022 09:50:05 -0700 Subject: Fix lint issue --- modern/src/store/errors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modern/src/store/errors.js') 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(); } -- cgit v1.2.3