From 68307085a268403b837872f3ccc997e97d9bb5d4 Mon Sep 17 00:00:00 2001 From: sid <35936587+siddharth-shringarpure@users.noreply.github.com> Date: Sun, 27 Oct 2024 09:29:01 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fixed=20size=20of=20error=20mess?= =?UTF-8?q?aging.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/custom/EventForm.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/custom/EventForm.tsx b/components/custom/EventForm.tsx index 9875f3d..d3b4444 100644 --- a/components/custom/EventForm.tsx +++ b/components/custom/EventForm.tsx @@ -102,7 +102,7 @@ const EventForm = ({ onSubmit }: EventFormProps) => {
- {errors.name &&

{errors.name.message}

} + {errors.name &&

{errors.name.message}

}
{/* Description Field */} @@ -110,7 +110,7 @@ const EventForm = ({ onSubmit }: EventFormProps) => {