Refactor: Resolve vscode type error in renderStatsCard function long locales check (#2985)

This commit is contained in:
Alexandr Garbuzov 2023-07-24 21:54:42 +03:00 committed by GitHub
parent 95b3170655
commit b6d5835441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ const renderStatsCard = (stats, options = {}) => {
"nl",
"zh-tw",
];
const isLongLocale = longLocales.includes(locale);
const isLongLocale = locale ? longLocales.includes(locale) : false;
// filter out hidden stats defined by user & create the text nodes
const statItems = Object.keys(STATS)