diff --git a/src/components/Main/schema.tsx b/src/components/Main/schema.tsx index 89efef1..8f1f4d0 100644 --- a/src/components/Main/schema.tsx +++ b/src/components/Main/schema.tsx @@ -31,5 +31,5 @@ export default Yup.object().shape({ .required("*Campo Obrigatório"), cpf: Yup.string().matches(cpf, "Cpf Inválido").required("*Campo Obrigatório"), instagram: Yup.string().matches(instagram, "Nome de Usuário Inválido"), - checkbox: Yup.boolean().oneOf([true], "*"), + checkbox: Yup.boolean().oneOf([true]), });