change dot-separated time style again (#9493)

This commit is contained in:
Samuel Newman
2025-12-05 22:56:59 +02:00
committed by GitHub
parent 8637ba7564
commit c68e5e82af
+1 -1
View File
@@ -12,7 +12,7 @@ export function niceDate(
return i18n._(
msg({
context: 'date and time formatted like this: [time] · [date]',
message: `${i18n.date(d, {timeStyle: 'short'})} · ${i18n.date(d, {day: 'numeric', month: 'numeric', year: '2-digit'})}`,
message: `${i18n.date(d, {timeStyle: 'short'})} · ${i18n.date(d, {dateStyle: 'medium'})}`,
}),
)
}