diff --git a/src/shared/utils/app/setup-date-fns.ts b/src/shared/utils/app/setup-date-fns.ts index fe957205..44f27acf 100644 --- a/src/shared/utils/app/setup-date-fns.ts +++ b/src/shared/utils/app/setup-date-fns.ts @@ -7,6 +7,16 @@ export default async function () { lang = "en-US"; } + // if lang and country are the same, then date-fns expects only the lang + // eg: instead of "fr-FR", we should import just "fr" + + if (lang.includes("-")) { + const parts = lang.split("-"); + if (parts[0] === parts[1].toLowerCase()) { + lang = parts[0]; + } + } + const locale = ( await import( /* webpackExclude: /\.js\.flow$/ */