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() {
|
export function togglePreferences() {
|
||||||
console.log('pressed');
|
|
||||||
return {
|
return {
|
||||||
type: ActionTypes.TOGGLE_PREFERENCES
|
type: ActionTypes.TOGGLE_PREFERENCES
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,6 @@ const initialState = {
|
||||||
const preferences = (state = initialState, action) => {
|
const preferences = (state = initialState, action) => {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case ActionTypes.TOGGLE_PREFERENCES:
|
case ActionTypes.TOGGLE_PREFERENCES:
|
||||||
console.log('in here');
|
|
||||||
return {
|
return {
|
||||||
isPreferencesShowing: !state.isPreferencesShowing
|
isPreferencesShowing: !state.isPreferencesShowing
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue