fix: show reminder icon per intake dose in schedule (#198)

* fix: show reminder icon per intake dose in schedule

* test: align schedule reminder icon test with intake-level flag
This commit is contained in:
Daniel Volz
2026-02-14 18:53:52 +01:00
committed by GitHub
parent e2c274014f
commit edf42bb068
3 changed files with 28 additions and 15 deletions
+10 -1
View File
@@ -45,7 +45,16 @@ const mockFutureDays = [
{
medName: "Aspirin",
total: 1,
doses: [{ id: `1-0-${FIXED_TIMESTAMP}`, timeStr: "09:00", when: FIXED_TIMESTAMP, usage: 1, takenBy: ["John"] }],
doses: [
{
id: `1-0-${FIXED_TIMESTAMP}`,
timeStr: "09:00",
when: FIXED_TIMESTAMP,
usage: 1,
takenBy: ["John"],
intakeRemindersEnabled: true,
},
],
lastWhen: FIXED_TIMESTAMP,
},
],