mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-02 21:04:06 +03:00
Use locale parameter for date formatting (#1637)
Co-authored-by: Hampus <hampus@fluxer.app>
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user