Fix date-fns locale import failing for some locales

This commit is contained in:
sunaurus 2023-06-30 19:59:44 +03:00
parent cf9f37fbc4
commit ed1f208e47
No known key found for this signature in database

View file

@ -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$/ */