diff --git a/components/wizard/contact.tsx b/components/wizard/contact.tsx index 30724d5..9a68f26 100644 --- a/components/wizard/contact.tsx +++ b/components/wizard/contact.tsx @@ -5,10 +5,11 @@ import Input from '../input' export default function Contact() { const { state, onChangeEvent } = useContext(WizardContext) - const { name, email, street, zip, city } = state.formData + const { org, name, email, street, zip, city } = state.formData return ( <> + @@ -21,7 +21,6 @@ export default function Contact() { value={destination} onChange={onChangeEvent} /> - ) }