Skip to content

Commit

Permalink
fix: remove Elm debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vjousse committed Aug 20, 2024
1 parent ee5a68b commit db81f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-elm/Main.elm
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ getNextRoundInfo model =

update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case Debug.log "MSG" msg of
case msg of
ChangeSettingConfig settingConfig ->
let
settingsConfig =
Expand Down Expand Up @@ -513,7 +513,7 @@ update msg model =
|> ListWithCurrent.setCurrentByPredicate (\t -> (t.name |> String.toLower) == model.config.theme)

newThemes =
case Debug.log "Current" (ListWithCurrent.getCurrent loadedThemes) of
case ListWithCurrent.getCurrent loadedThemes of
Just theme ->
-- We found a theme with the same name than in the config: everything's fine
if (theme.name |> String.toLower) == (model.config.theme |> String.toLower) then
Expand Down

0 comments on commit db81f13

Please sign in to comment.