diff --git a/src/core/i18n.js b/src/core/i18n.js index b4930749..b8ac9cc4 100644 --- a/src/core/i18n.js +++ b/src/core/i18n.js @@ -51,10 +51,9 @@ const getLocale = () => { localStorageLocaleKey: 'lang', }); - // If not found, the default is Chinese + // If not found, the default is English if (!_.find(SUPPORT_LOCALES, { value: currentLocale })) { - currentLocale = 'zh-cn'; - // currentLocale = 'en'; + currentLocale = 'en'; } if (!currentLocals) {