From 8b925b4f0c1c29c41ea064fa4f40776b12e9c64c Mon Sep 17 00:00:00 2001 From: Kenneth Van den Berghe <68184728+kennethvdberghe@users.noreply.github.com> Date: Mon, 28 Mar 2022 16:30:55 +0200 Subject: [PATCH] fix: fixed typo in id for aria error messages (#36) --- app/routes/notes/new.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routes/notes/new.tsx b/app/routes/notes/new.tsx index 736af99e..25041e6c 100644 --- a/app/routes/notes/new.tsx +++ b/app/routes/notes/new.tsx @@ -75,7 +75,7 @@ export default function NewNotePage() { /> {actionData?.errors?.title && ( -
+
{actionData.errors.title}
)} @@ -96,7 +96,7 @@ export default function NewNotePage() { /> {actionData?.errors?.body && ( -
+
{actionData.errors.body}
)}