Merge branch '682-change-order-of-reminders' into 'main'

change order of periode and temperature reminder

Closes #682

See merge request bloodyhealth/drip!643
This commit is contained in:
wunderfisch
2024-01-05 15:18:32 +00:00
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -23,16 +23,16 @@ const Reminders = () => {
return ( return (
<AppPage> <AppPage>
<Segment title={labels.tempReminder.title}> <Segment title={labels.periodReminder.title}>
<TemperatureReminder />
</Segment>
<Segment title={labels.periodReminder.title} last>
<AppSwitch <AppSwitch
onToggle={periodReminderToggle} onToggle={periodReminderToggle}
text={labels.periodReminder.reminderText} text={labels.periodReminder.reminderText}
value={isPeriodReminderEnabled} value={isPeriodReminderEnabled}
/> />
</Segment> </Segment>
<Segment title={labels.tempReminder.title} last>
<TemperatureReminder />
</Segment>
</AppPage> </AppPage>
) )
} }
+1 -1
View File
@@ -65,7 +65,7 @@ exports[`License screen should match the snapshot 1`] = `
] ]
} }
> >
Copyright (C) 2023 Heart of Code e.V. Copyright (C) 2024 Heart of Code e.V.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details:
</Text> </Text>