Skip to content

Commit 0274893

Browse files
fix: signup form not being catched (#756)
1 parent 0f1e084 commit 0274893

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app-builder/src/components/Auth/SignUpWithEmailAndPassword.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
WeakPasswordError,
77
} from '@app-builder/services/auth/auth.client';
88
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';
1010
import * as Sentry from '@sentry/remix';
1111
import { useForm } from '@tanstack/react-form';
1212
import toast from 'react-hot-toast';
@@ -65,7 +65,7 @@ export function SignUpWithEmailAndPassword({ signUp }: { signUp: () => void }) {
6565
});
6666

6767
return (
68-
<form className="flex w-full flex-col gap-4">
68+
<form className="flex w-full flex-col gap-4" onSubmit={handleSubmit(form)}>
6969
<form.Field name="credentials.email">
7070
{(field) => (
7171
<div className="flex flex-col items-start gap-2">

0 commit comments

Comments
 (0)