fix: load i18n

This commit is contained in:
JellyBrick
2023-12-01 23:50:15 +09:00
parent 324a539b89
commit 8227853cf9

View File

@ -12,6 +12,8 @@ export const loadI18n = async () =>
}
});
loadI18n();
export const setLanguage = async (language: string) => await changeLanguage(language);
export const t = i18t.bind(i18next);