diff --git a/src/components/ui/Form.astro b/src/components/ui/Form.astro index 276b39fd68..339102fefb 100644 --- a/src/components/ui/Form.astro +++ b/src/components/ui/Form.astro @@ -2,14 +2,30 @@ import type { Form as Props } from '~/types'; import Button from '~/components/ui/Button.astro'; -const { inputs, textarea, disclaimer, button = 'Contact us', description = '' } = Astro.props; +const { inputs, textarea, disclaimer, button = 'Contact us', description = '', form } = Astro.props; --- -