diff options
author | William Carroll <wpcarro@gmail.com> | 2020-12-13T15·14+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-12-13T15·14+0000 |
commit | 1cff020d66597b35178dcc285258d5145f57cd33 (patch) | |
tree | 15ac3c3436dced75b170a9f1edb6459b058b1ec7 /website | |
parent | 27585cd87405216888fb56c2ad89834e86cd008a (diff) |
Show Morning and Evening habits by default
Now that I've deployed this, and I have an iPad running in kiosk mode, I realized that I'd like to show my morning routine and my evening routine.
Diffstat (limited to 'website')
-rw-r--r-- | website/habit-screens/src/State.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/habit-screens/src/State.elm b/website/habit-screens/src/State.elm index c75c99322249..ea00a013513e 100644 --- a/website/habit-screens/src/State.elm +++ b/website/habit-screens/src/State.elm @@ -122,8 +122,8 @@ init = , today = Nothing , completed = Set.empty , visibleDayOfWeek = Nothing - , includeMorning = False - , includeEvening = False + , includeMorning = True + , includeEvening = True } , Date.today |> Task.perform ReceiveDate ) |