remove console messages
This commit is contained in:
parent
035e019260
commit
92e5e4e599
2 changed files with 0 additions and 2 deletions
|
@ -27,7 +27,6 @@ export function stopSketch() {
|
|||
}
|
||||
|
||||
export function togglePreferences() {
|
||||
console.log('pressed');
|
||||
return {
|
||||
type: ActionTypes.TOGGLE_PREFERENCES
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue