Update all useTranslation references with all namespaces

This commit is contained in:
Nicola Benaglia
2025-05-18 19:14:03 +02:00
parent 42cc8ad247
commit 10bbf420c3
46 changed files with 102 additions and 66 deletions

View File

@@ -5,7 +5,7 @@ import DarkModeIcon from '@mui/icons-material/DarkMode';
import { useTranslation } from 'react-i18next';
const ThemeSelector = () => {
const { t } = useTranslation(['core']);
const { t } = useTranslation(['auth', 'core', 'group']);
const { themeMode, toggleTheme } = useThemeContext();