We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597bebb commit d288772Copy full SHA for d288772
src/app/reducers/mainReducer.js
@@ -1,7 +1,6 @@
1
import { produce } from 'immer';
2
import _, { values } from 'lodash';
3
import * as types from '../constants/actionTypes.ts';
4
-// import { current } from 'immer';
5
6
export default (state, action) =>
7
produce(state, (draft) => {
@@ -209,7 +208,7 @@ export default (state, action) =>
209
208
// Log the value of tabs[currentTab].snapshots before the update
210
port.postMessage({
211
action: 'import',
212
- payload: action.payload, //.snapshots,
+ payload: action.payload,
213
tabId: currentTab,
214
});
215
0 commit comments