feat: run prettier

This commit is contained in:
JellyBrick
2023-12-02 05:01:06 +09:00
parent a6445bacf0
commit 6e8447b5d1
27 changed files with 318 additions and 179 deletions

View File

@ -8,11 +8,11 @@ export const loadI18n = async () =>
lng: 'en',
fallbackLng: 'en',
interpolation: {
escapeValue: false
}
escapeValue: false,
},
});
export const setLanguage = async (language: string) => await changeLanguage(language);
export const setLanguage = async (language: string) =>
await changeLanguage(language);
export const t = i18t.bind(i18next);