List all namespaces in useTranslation

This commit is contained in:
Nicola Benaglia
2025-05-24 12:14:06 +02:00
parent 5546ffdd7a
commit 75dada87cb
75 changed files with 574 additions and 82 deletions

View File

@@ -76,7 +76,13 @@ export const AppsNavBarDesktop = ({ disableBack }) => {
);
const theme = useTheme();
const { t } = useTranslation(['auth', 'core', 'group']);
const { t } = useTranslation([
'auth',
'core',
'group',
'question',
'tutorial',
]);
const [isNewTabWindow, setIsNewTabWindow] = useState(false);
const tabsRef = useRef(null);
const [anchorEl, setAnchorEl] = useState(null);