diff --git a/components/pages/Contact/Form/Form.tsx b/components/pages/Contact/Form/Form.tsx index 60025af..7e596cc 100644 --- a/components/pages/Contact/Form/Form.tsx +++ b/components/pages/Contact/Form/Form.tsx @@ -15,7 +15,7 @@ const initialValues = { * @returns React element. */ export default function Form() { - const {name, email} = formConfig; + const {name, email, message} = formConfig; const formik = useFormik({ initialValues, onSubmit: values => {}, @@ -25,6 +25,8 @@ export default function Form() { return (
+ +
Select your preferred method of contact.
);