web: Fix reminder dialog subtext formatting. (#9241)

Signed-off by: Chloe Oletto <NeedsChloesure@riseup.net>
This commit is contained in:
Chloe Oletto
2026-01-21 20:25:20 -08:00
committed by GitHub
parent 60df472d53
commit c53c3167d8

View File

@@ -509,7 +509,7 @@ export const AddReminderDialog = DialogManager.register(
</Text>
) : (
<Text variant="subBody" sx={{ mt: 1 }}>
{strings.reminderStarts(date.toString(), date.format(timeFormat()))}
{strings.reminderStarts(date.format(db.settings.getDateFormat()), date.format(timeFormat()))}
</Text>
)}
</Dialog>