From ff7105783d202ed4da608e0ec2d7f27181cec296 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Fri, 10 Jan 2025 09:41:52 +0530 Subject: [PATCH] Fixes `Well-designed HTML forms are Has support for...` --- apps/www/content/docs/components/form.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/content/docs/components/form.mdx b/apps/www/content/docs/components/form.mdx index 0582b7eee8d..a0703e34294 100644 --- a/apps/www/content/docs/components/form.mdx +++ b/apps/www/content/docs/components/form.mdx @@ -12,7 +12,7 @@ Well-designed HTML forms are: - Well-structured and semantically correct. - Easy to use and navigate (keyboard). - Accessible with ARIA attributes and proper labels. -- Has support for client and server side validation. +- Designed to support client and server side validation. - Well-styled and consistent with the rest of the application. In this guide, we will take a look at building forms with [`react-hook-form`](https://react-hook-form.com/) and [`zod`](https://zod.dev). We're going to use a `` component to compose accessible forms using Radix UI components.