diff --git a/client/src/components/popup/preferences.tsx b/client/src/components/popup/preferences.tsx
index 9e77ec6..303ec30 100644
--- a/client/src/components/popup/preferences.tsx
+++ b/client/src/components/popup/preferences.tsx
@@ -16,6 +16,8 @@ export function PreferencesPopup({ handleClose }: { handleClose: () => void }) {
let { t } = useTranslation()
const {layout, isSavePreferences, language, setLayout, setIsSavePreferences, setLanguage} = React.useContext(PreferencesContext)
+
+
const marks = [
{
value: 0,
@@ -59,7 +61,13 @@ export function PreferencesPopup({ handleClose }: { handleClose: () => void }) {
value={language}
label={t("Language")}
onChange={handlerChangeLanguage}>
- {lean4gameConfig.languages.map(lang => {return })}
+ {lean4gameConfig.languages.map(lang => {
+ return
+ })}
}
diff --git a/client/src/config.json b/client/src/config.json
index 9a4d059..d140efc 100644
--- a/client/src/config.json
+++ b/client/src/config.json
@@ -22,5 +22,6 @@
"flag": "CN",
"name": "中文"
}
- ]
+ ],
+ "useFlags": false
}