1
1
"use client" ;
2
2
3
+ import { formSchema } from "@/app/signup/schema" ;
3
4
import { Button } from "@/components/ui/button" ;
4
5
import {
5
6
Form ,
@@ -11,7 +12,6 @@ import {
11
12
FormMessage ,
12
13
} from "@/components/ui/form" ;
13
14
import { Input } from "@/components/ui/input" ;
14
- import { formSchema } from "@/app/signup/schema" ;
15
15
import { zodResolver } from "@hookform/resolvers/zod" ;
16
16
import { useRouter } from "next/navigation" ;
17
17
import { useForm } from "react-hook-form" ;
@@ -21,6 +21,7 @@ export function EmailForm() {
21
21
// Allows us to set an error message on the form.
22
22
const {
23
23
setError,
24
+ clearErrors,
24
25
formState : { errors } ,
25
26
} = useForm ( ) ;
26
27
// Used to navigate to the welcome page after a successful form submission.
@@ -37,6 +38,8 @@ export function EmailForm() {
37
38
// Define a submit handler called when the form is submitted. It sends the
38
39
// form data to an API endpoint and redirects to the welcome page on success.
39
40
async function onSubmit ( values : z . infer < typeof formSchema > ) {
41
+ clearErrors ( ) ;
42
+
40
43
// values is guaranteed to be of the correct type by the Zod schema.
41
44
const result = await fetch ( "/signup/test" , {
42
45
body : JSON . stringify ( values ) ,
@@ -63,17 +66,21 @@ export function EmailForm() {
63
66
64
67
return (
65
68
< Form { ...form } >
66
- < form onSubmit = { form . handleSubmit ( onSubmit ) } className = "space-y-8" >
69
+ < form onSubmit = { form . handleSubmit ( onSubmit ) } className = "w-full space-y-8" >
67
70
< FormField
68
71
control = { form . control }
69
72
name = "email" // The name of the field in the form schema.
70
- render = { ( { field } ) => (
73
+ render = { ( { field : { onChange , ... field } } ) => (
71
74
< FormItem >
72
75
< FormLabel > Email</ FormLabel >
73
76
< FormControl >
74
77
< Input
75
78
type = "email"
76
79
80
+ onChange = { ( e ) => {
81
+ clearErrors ( ) ;
82
+ onChange ( e ) ;
83
+ } }
77
84
{ ...field }
78
85
/>
79
86
</ FormControl >
0 commit comments