This commit is contained in:
2025-11-14 14:47:26 +00:00
parent 69ecf2c7c1
commit 3b4876793e
104 changed files with 231517 additions and 1029 deletions
+2 -3
View File
@@ -32,7 +32,7 @@ const SignupPage: React.FC = () => {
useEffect(() => {
if (user) {
navigate('/single-player');
navigate('/dashboard');
}
}, [user, navigate]);
@@ -46,7 +46,7 @@ const SignupPage: React.FC = () => {
displayName
);
if (result.user) {
navigate('/single-player');
navigate('/dashboard');
}
} catch (error) {
logger.error('signup-page', '❌ Registration failed', error);
@@ -117,4 +117,3 @@ const SignupPage: React.FC = () => {
};
export default SignupPage;