Skip to content

Commit 92e5e4e

Browse files
committed
remove console messages
1 parent 035e019 commit 92e5e4e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

shared/redux/actions/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export function stopSketch() {
2727
}
2828

2929
export function togglePreferences() {
30-
console.log('pressed');
3130
return {
3231
type: ActionTypes.TOGGLE_PREFERENCES
3332
}

shared/redux/reducers/preferences.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const initialState = {
77
const preferences = (state = initialState, action) => {
88
switch (action.type) {
99
case ActionTypes.TOGGLE_PREFERENCES:
10-
console.log('in here');
1110
return {
1211
isPreferencesShowing: !state.isPreferencesShowing
1312
}

0 commit comments

Comments
 (0)