From 02a37028370ea33c0132a8a6e11a0823b6180535 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 28 Oct 2020 23:36:10 +0100 Subject: [PATCH] move org from reason to contact --- components/wizard/contact.tsx | 3 ++- components/wizard/reason.tsx | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) 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} /> - ) }