diff --git a/frontend/src/store/feature-metrics-store.js b/frontend/src/store/feature-metrics-store.js index 621688226e..f73387f3a0 100644 --- a/frontend/src/store/feature-metrics-store.js +++ b/frontend/src/store/feature-metrics-store.js @@ -9,7 +9,6 @@ import { const metrics = (state = fromJS({ lastHour: {}, lastMinute: {}, seenApps: {} }), action) => { switch (action.type) { case RECEIVE_SEEN_APPS: - console.log('RECEIVE_SEEN_APPS', action.value); return state.set('seenApps', new $Map(action.value)); case RECEIVE_FEATURE_METRICS: return state.withMutations((ctx) => {