From 396abfe03f85f294d911d8362b7afce5600620c6 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 2 Oct 2018 23:11:09 +1300 Subject: Update map icons --- modern/src/reducers/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modern/src/reducers/index.js') diff --git a/modern/src/reducers/index.js b/modern/src/reducers/index.js index 962d83c..ac592bf 100644 --- a/modern/src/reducers/index.js +++ b/modern/src/reducers/index.js @@ -9,12 +9,12 @@ function rootReducer(state = initialState, action) { case 'UPDATE_DEVICES': return Object.assign({}, { ...state, - devices: [...state.devices, ...action.devices] + devices: [...action.devices] }); case 'UPDATE_POSITIONS': return Object.assign({}, { ...state, - positions: [...state.positions, ...action.positions] + positions: [...action.positions] }); default: return state; -- cgit v1.2.3