From b745b17b9224cc56435f2e6b8fcd8c8156202b3f Mon Sep 17 00:00:00 2001 From: Ajay Ghanwat Date: Sat, 16 Aug 2025 14:47:37 +0530 Subject: [PATCH] Fixxed bugs Form Validation --- src/components/Form.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Form.astro b/src/components/Form.astro index 97980b7..c6e28fc 100644 --- a/src/components/Form.astro +++ b/src/components/Form.astro @@ -262,6 +262,7 @@ const formId = `f-${Math.random().toString(36).slice(2)}`; const schema = getSchema(); console.log(schema); + console.log(schema.shape[name]); if (!schema || !schema.shape || !schema.shape[name]) return;