Change log

-   config.ts
    -   line 72: remove type confirmation of x as x always has type 'number'
    -   line 135: remove the redundant local variable
-   chat.ts
    -   delete the unused import
This commit is contained in:
KeithHello
2023-10-04 18:08:29 +09:00
parent ad5093ce05
commit 1505372e20
2 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ export const ALL_LANG_OPTIONS: Record<Lang, string> = {
};
const LANG_KEY = "lang";
const DEFAULT_LANG = "cn";
const DEFAULT_LANG = "en";
const fallbackLang = en;
const targetLang = ALL_LANGS[getLang()] as LocaleType;