about summary refs log tree commit diff
path: root/website
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-12-13T15·14+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-12-13T15·14+0000
commit1cff020d66597b35178dcc285258d5145f57cd33 (patch)
tree15ac3c3436dced75b170a9f1edb6459b058b1ec7 /website
parent27585cd87405216888fb56c2ad89834e86cd008a (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.elm4
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
     )