Skip to content

Commit 89a6a67

Browse files
committed
chore: lint
1 parent bc14d8c commit 89a6a67

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src-elm/View/Timer.elm

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ dialView sessionType currentTime maxTime maxStrokeDasharray theme focusLabel sho
102102

103103
timerView : Model -> Html Msg
104104
timerView ({ config, strokeDasharray, theme, pomodoroState, focusLabel, shortBreakLabel, longBreakLabel } as model) =
105-
let
106-
_ =
107-
Debug.log "Pomodoro state" pomodoroState
108-
in
109105
pomodoroState
110106
|> Maybe.map
111107
(\state ->

src-tauri/src/pomodoro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ pub fn get_session_info_with_default(
574574
if line_content.session_status == SessionStatus::Running {
575575
pomodoro.config.focus_duration - remaining_seconds
576576
} else {
577-
pomodoro.current_session.elapsed_seconds.into()
577+
pomodoro.current_session.elapsed_seconds
578578
}
579579
}
580580
};

0 commit comments

Comments
 (0)