Use locale parameter for date formatting (#1637)

Co-authored-by: Hampus <hampus@fluxer.app>
This commit is contained in:
valtteri1010
2026-08-15 19:37:48 +02:00
committed by GitHub
co-authored by Hampus
parent b937306210
commit d1e5b00c52
+1 -1
View File
@@ -70,7 +70,7 @@ export function getFormattedCompactDateTime(
hour12?: boolean,
): string {
const date = parseDate(timestamp);
const datePart = getDateFormatter('en-US', {month: 'numeric', day: 'numeric', year: '2-digit'}).format(date);
const datePart = getDateFormatter(locale, {month: 'numeric', day: 'numeric', year: '2-digit'}).format(date);
const timePart = getDateFormatter(locale, {
hour: 'numeric',
minute: '2-digit',