diff --git a/src/utils/time.ts b/src/utils/time.ts index 7e22bf1..5d74a38 100644 --- a/src/utils/time.ts +++ b/src/utils/time.ts @@ -11,7 +11,7 @@ export const showDate = (tz: string, locale: Map, date: Date) = const localeInfo = new Intl.Locale(tz); const intlTimezone = moment.tz.zonesForCountry(localeInfo.region ?? localeInfo.baseName); const formattedDate = new Intl.DateTimeFormat(tz, { - timeZone: intlTimezone ? intlTimezone[0] : "Greenwich", + timeZone: intlTimezone ? intlTimezone[0] : "Africa/Abidjan", dateStyle: "short", timeStyle: "medium", })