Skip to content

Commit 19c8d20

Browse files
authored
fix: bug and console errors (#242)
* specify a key for the rendered lists * fix duplicate validation error message
1 parent 23ff901 commit 19c8d20

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

app/signup/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function IndexPage() {
5252
<div className={styles.Section}>
5353
<h2 className="text-xl font-bold">Try it</h2>
5454

55-
<div className="flex gap-4">
55+
<div className="flex w-[320px] gap-4">
5656
<EmailForm />
5757
</div>
5858

components/EmailForm.tsx

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client";
22

3+
import { formSchema } from "@/app/signup/schema";
34
import { Button } from "@/components/ui/button";
45
import {
56
Form,
@@ -11,7 +12,6 @@ import {
1112
FormMessage,
1213
} from "@/components/ui/form";
1314
import { Input } from "@/components/ui/input";
14-
import { formSchema } from "@/app/signup/schema";
1515
import { zodResolver } from "@hookform/resolvers/zod";
1616
import { useRouter } from "next/navigation";
1717
import { useForm } from "react-hook-form";
@@ -21,6 +21,7 @@ export function EmailForm() {
2121
// Allows us to set an error message on the form.
2222
const {
2323
setError,
24+
clearErrors,
2425
formState: { errors },
2526
} = useForm();
2627
// Used to navigate to the welcome page after a successful form submission.
@@ -37,6 +38,8 @@ export function EmailForm() {
3738
// Define a submit handler called when the form is submitted. It sends the
3839
// form data to an API endpoint and redirects to the welcome page on success.
3940
async function onSubmit(values: z.infer<typeof formSchema>) {
41+
clearErrors();
42+
4043
// values is guaranteed to be of the correct type by the Zod schema.
4144
const result = await fetch("/signup/test", {
4245
body: JSON.stringify(values),
@@ -63,17 +66,21 @@ export function EmailForm() {
6366

6467
return (
6568
<Form {...form}>
66-
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8">
69+
<form onSubmit={form.handleSubmit(onSubmit)} className="w-full space-y-8">
6770
<FormField
6871
control={form.control}
6972
name="email" // The name of the field in the form schema.
70-
render={({ field }) => (
73+
render={({ field: { onChange, ...field } }) => (
7174
<FormItem>
7275
<FormLabel>Email</FormLabel>
7376
<FormControl>
7477
<Input
7578
type="email"
7679
placeholder="[email protected]"
80+
onChange={(e) => {
81+
clearErrors();
82+
onChange(e);
83+
}}
7784
{...field}
7885
/>
7986
</FormControl>

components/SiteHeader.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { NavItem } from "@/types/nav";
1414
import Image from "next/image";
1515
import Link from "next/link";
1616
import { usePathname } from "next/navigation";
17-
import { useMemo, useState } from "react";
17+
import { Fragment, useMemo, useState } from "react";
1818

1919
import styles from "./SiteHeader.module.scss";
2020

@@ -35,17 +35,17 @@ export function SiteHeader() {
3535
const selected = pathname.indexOf(item.key) >= 0;
3636

3737
return item.key == "home" ? (
38-
<></>
38+
<Fragment key={"nav-item-" + index}></Fragment>
3939
) : item.href && selected ? (
4040
<span
41-
key={index}
41+
key={"nav-item-" + index}
4242
className={cn("text-md flex h-8 items-center font-bold text-primary")}
4343
>
4444
{item.title}
4545
</span>
4646
) : (
4747
<Link
48-
key={index}
48+
key={"nav-item-" + index}
4949
href={item.href || ""}
5050
className={buttonVariants({
5151
size: "defaultTight",

0 commit comments

Comments
 (0)