From 92e5e4e599262f7a4639f74dc550f04686dcffa5 Mon Sep 17 00:00:00 2001 From: mathuramg Date: Fri, 17 Jun 2016 13:52:22 -0400 Subject: [PATCH] remove console messages --- shared/redux/actions/index.js | 1 - shared/redux/reducers/preferences.js | 1 - 2 files changed, 2 deletions(-) diff --git a/shared/redux/actions/index.js b/shared/redux/actions/index.js index 71cc040f..eada5da7 100644 --- a/shared/redux/actions/index.js +++ b/shared/redux/actions/index.js @@ -27,7 +27,6 @@ export function stopSketch() { } export function togglePreferences() { - console.log('pressed'); return { type: ActionTypes.TOGGLE_PREFERENCES } diff --git a/shared/redux/reducers/preferences.js b/shared/redux/reducers/preferences.js index ea84eb21..8c647b3a 100644 --- a/shared/redux/reducers/preferences.js +++ b/shared/redux/reducers/preferences.js @@ -7,7 +7,6 @@ const initialState = { const preferences = (state = initialState, action) => { switch (action.type) { case ActionTypes.TOGGLE_PREFERENCES: - console.log('in here'); return { isPreferencesShowing: !state.isPreferencesShowing }