fix issue

This commit is contained in:
Mylloon 2024-09-27 13:13:13 +02:00
parent 013dbf4974
commit b78ccb801f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -9,8 +9,9 @@ import moment from "moment-timezone";
*/
export const showDate = (tz: string, locale: Map<string, unknown>, date: Date) => {
const localeInfo = new Intl.Locale(tz);
const intlTimezone = moment.tz.zonesForCountry(localeInfo.region ?? localeInfo.baseName);
const formattedDate = new Intl.DateTimeFormat(tz, {
timeZone: moment.tz.zonesForCountry(localeInfo.region ?? localeInfo.baseName)[0],
timeZone: intlTimezone ? intlTimezone[0] : "Etc/GMT",
dateStyle: "short",
timeStyle: "medium",
})