diff --git a/apps/login/src/components/translated.tsx b/apps/login/src/components/translated.tsx index 172c5b7af0..60cab58256 100644 --- a/apps/login/src/components/translated.tsx +++ b/apps/login/src/components/translated.tsx @@ -11,9 +11,10 @@ export function Translated({ namespace?: string; } & React.HTMLAttributes) { const t = useTranslations(namespace); + const helperKey = `${namespace ? `${namespace}.` : ""}${i18nKey}`; return ( - + {t(i18nKey)} );