diff --git a/app/app/src/i18n/i18n.ts b/app/app/src/i18n/i18n.ts index 5b546b1..b324fe2 100644 --- a/app/app/src/i18n/i18n.ts +++ b/app/app/src/i18n/i18n.ts @@ -79,7 +79,7 @@ type UnionRecursiveTail = function i18nFactory(locale: OverloadedParameters[0] | undefined) { return (...args: UnionRecursiveTail>) => - i18n.apply(i18n, [locale ?? defaultLocale, ...args]) + i18n.apply(i18n, [locale ?? defaultLocale, ...args] as any) } export default i18n