fix: auth page locale

This commit is contained in:
Mahyar Khanbolooki
2025-07-24 16:08:58 +03:30
parent 015f23fc66
commit 8b92487f6e
4 changed files with 4 additions and 4 deletions
@@ -15,7 +15,7 @@ type Props = {
function StepEnterNumber({ onChange, pending, disabled, value }: Props) {
const [error, setError] = useState('');
const { t } = useTranslation();
const { t } = useTranslation('auth');
const hasError = (e = error) => {
return e.trim().length > 0