remove console messages

This commit is contained in:
mathuramg 2016-06-17 13:52:22 -04:00
parent 035e019260
commit 92e5e4e599
2 changed files with 0 additions and 2 deletions

View File

@ -27,7 +27,6 @@ export function stopSketch() {
}
export function togglePreferences() {
console.log('pressed');
return {
type: ActionTypes.TOGGLE_PREFERENCES
}

View File

@ -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
}