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 }