diff --git a/src/pages/auth/Register.tsx b/src/pages/auth/Register.tsx index 8543036..5a1862f 100644 --- a/src/pages/auth/Register.tsx +++ b/src/pages/auth/Register.tsx @@ -15,7 +15,9 @@ const Register: FC = () => { const { t } = useTranslation('global') useEffect(() => { - window.location.href = Pages.auth.login + setTimeout(() => { + window.location.href = Pages.auth.login + }, 300) }, [])