We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035e019 commit 92e5e4eCopy full SHA for 92e5e4e
shared/redux/actions/index.js
@@ -27,7 +27,6 @@ export function stopSketch() {
27
}
28
29
export function togglePreferences() {
30
- console.log('pressed');
31
return {
32
type: ActionTypes.TOGGLE_PREFERENCES
33
shared/redux/reducers/preferences.js
@@ -7,7 +7,6 @@ const initialState = {
7
const preferences = (state = initialState, action) => {
8
switch (action.type) {
9
case ActionTypes.TOGGLE_PREFERENCES:
10
- console.log('in here');
11
12
isPreferencesShowing: !state.isPreferencesShowing
13
0 commit comments