diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-21 09:50:05 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-21 09:50:05 -0700 |
commit | c59d1418df08f9fbb4edb131b54d9f5947893388 (patch) | |
tree | 047f1018bb441e5de65d5380aac4407a3ad70037 | |
parent | 7e96816f94314dcdf071eeee6e74a95bcace329f (diff) | |
download | trackermap-web-c59d1418df08f9fbb4edb131b54d9f5947893388.tar.gz trackermap-web-c59d1418df08f9fbb4edb131b54d9f5947893388.tar.bz2 trackermap-web-c59d1418df08f9fbb4edb131b54d9f5947893388.zip |
Fix lint issue
-rw-r--r-- | modern/src/store/errors.js | 2 |
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(); } |