From 701d3f5447011484f3fda3b120fa19d9ac6d4c00 Mon Sep 17 00:00:00 2001 From: Ajay Ghanwat Date: Sat, 16 Aug 2025 14:53:49 +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 c6e28fc..9f03818 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); console.log(schema.shape[name]); if (!schema || !schema.shape || !schema.shape[name]) return;