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

@@ -51,7 +51,13 @@ export const RegisterName = ({
);
const [nameFee, setNameFee] = useState(null);
const theme = useTheme();
const { t } = useTranslation(['auth', 'core', 'group']);
const { t } = useTranslation([
'auth',
'core',
'group',
'question',
'tutorial',
]);
const checkIfNameExisits = async (name) => {
if (!name?.trim()) {
setIsNameAvailable(Availability.NULL);