From 4f1a5c92579383b08a9abf14d771b0c011f0e2c2 Mon Sep 17 00:00:00 2001 From: devartes Date: Fri, 13 Jan 2023 15:06:11 -0300 Subject: [PATCH] refactor(Contato.tsx): removendo console.log --- src/components/Main/Contato/Contato.tsx | 2 -- 1 file changed, 2 deletions(-) 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}