From 1cff020d66597b35178dcc285258d5145f57cd33 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 13 Dec 2020 15:14:19 +0000 Subject: [PATCH] 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. --- website/habit-screens/src/State.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/habit-screens/src/State.elm b/website/habit-screens/src/State.elm index c75c99322..ea00a0135 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 )