diff --git a/front/src/components/ui/Form.astro b/front/src/components/ui/Form.astro index 6ab6b41..7b63ed9 100644 --- a/front/src/components/ui/Form.astro +++ b/front/src/components/ui/Form.astro @@ -2,10 +2,10 @@ 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 = '', id, method, enctype } = Astro.props; --- -