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

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