monkey-front-core 0.0.378 → 0.0.379

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2456,9 +2456,6 @@ const seederReducer = (keys) => {
2456
2456
  return (state, action) => {
2457
2457
  const handledState = reducer(state, action);
2458
2458
  if (action.type === INIT) {
2459
- console.log('=============');
2460
- console.log(handledState);
2461
- console.log(action.type);
2462
2459
  let data = null;
2463
2460
  try {
2464
2461
  const storage = localStorage.getItem('mecx-store');
@@ -2501,9 +2498,6 @@ const seederReducer = (keys) => {
2501
2498
  catch (e) {
2502
2499
  localStorage.removeItem('mecx-store');
2503
2500
  }
2504
- console.log('@@@@@@@@@@@@');
2505
- console.log(handledState);
2506
- console.log(action.type);
2507
2501
  return handledState;
2508
2502
  };
2509
2503
  };