diff --git a/client/src/localization/Translation.tsx b/client/src/localization/Translation.tsx index bcee465b7b..8df24193db 100644 --- a/client/src/localization/Translation.tsx +++ b/client/src/localization/Translation.tsx @@ -49,7 +49,7 @@ if (!String.prototype.format) { // input: language code in string // returns an object of translated strings in the language export const getTranslations = (langCode: string) => { - const language = languageMap[langCode] || English; + const language = languageMap[langCode] || Chinese; return language; };