From 83c97028f76264f8c59a55a69523ef439b4ebec2 Mon Sep 17 00:00:00 2001 From: Ghost <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 2 Aug 2020 11:00:50 +0200 Subject: [PATCH] Linting changes --- Dashboard/app/renderer/store/reducers/comConnectionReducer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dashboard/app/renderer/store/reducers/comConnectionReducer.js b/Dashboard/app/renderer/store/reducers/comConnectionReducer.js index 458edfb..ce50e54 100644 --- a/Dashboard/app/renderer/store/reducers/comConnectionReducer.js +++ b/Dashboard/app/renderer/store/reducers/comConnectionReducer.js @@ -9,6 +9,6 @@ const parser = port.pipe(new Readline({ delimiter: '\r\n' })); const initialState = { port, parser }; -export default (state = initialState, { type, payload }) => { +export default (state = initialState) => { return state; };