From 0c44905d123f67893347a0005850eb49afc28c1a Mon Sep 17 00:00:00 2001 From: ukorvl Date: Thu, 7 Sep 2023 14:48:13 +0400 Subject: [PATCH] minor changes #8 --- components/pages/Contact/Form/Form.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.
);