diff --git a/src/components/Main/Contato/Contato.tsx b/src/components/Main/Contato/Contato.tsx index 5cbf5ec..f5b57ef 100644 --- a/src/components/Main/Contato/Contato.tsx +++ b/src/components/Main/Contato/Contato.tsx @@ -34,7 +34,6 @@ const Contato = () => { validationSchema={schema} onSubmit={(values: FormArea, actions) => { actions.resetForm(); - console.log(values); if ( values.checkbox === true && values.cpf !== "" && @@ -44,7 +43,6 @@ const Contato = () => { values.birthDate !== "" ) { setIsValidate(true); - console.log(isValidate); } }} initialValues={initialValues}