File tree 1 file changed +2
-2
lines changed
packages/app-builder/src/components/Auth
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 6
6
WeakPasswordError ,
7
7
} from '@app-builder/services/auth/auth.client' ;
8
8
import { clientServices } from '@app-builder/services/init.client' ;
9
- import { getFieldErrors } from '@app-builder/utils/form' ;
9
+ import { getFieldErrors , handleSubmit } from '@app-builder/utils/form' ;
10
10
import * as Sentry from '@sentry/remix' ;
11
11
import { useForm } from '@tanstack/react-form' ;
12
12
import toast from 'react-hot-toast' ;
@@ -65,7 +65,7 @@ export function SignUpWithEmailAndPassword({ signUp }: { signUp: () => void }) {
65
65
} ) ;
66
66
67
67
return (
68
- < form className = "flex w-full flex-col gap-4" >
68
+ < form className = "flex w-full flex-col gap-4" onSubmit = { handleSubmit ( form ) } >
69
69
< form . Field name = "credentials.email" >
70
70
{ ( field ) => (
71
71
< div className = "flex flex-col items-start gap-2" >
You can’t perform that action at this time.
0 commit comments