diff --git a/src/components/ui/TheHeader.vue b/src/components/ui/TheHeader.vue index d71fc82..b7b5f28 100644 --- a/src/components/ui/TheHeader.vue +++ b/src/components/ui/TheHeader.vue @@ -4,7 +4,7 @@ diff --git a/src/store/timer/timerMutations.js b/src/store/timer/timerMutations.js index 6b2f797..1fca869 100644 --- a/src/store/timer/timerMutations.js +++ b/src/store/timer/timerMutations.js @@ -29,7 +29,7 @@ export default { stopTimer: (state) => { state.isRunning = false; state.currentPomodoro = state.currentTime; - console.log('stop', state.currentPomodoro, state.currentTime); + // console.log('stop', state.currentPomodoro, state.currentTime); }, resetTimer: (state) => { state.isRunning = false; @@ -67,7 +67,7 @@ export default { state.currentTime = state.pomodoroTime; state.workTime = true; } - console.log('next', state.currentPomodoro, state.currentTime); + // console.log('next', state.currentPomodoro, state.currentTime); }, playAlarm: (state) => { state.sound.play();