Skip to content

Commit e6c43a4

Browse files
remove console.log
1 parent 377157a commit e6c43a4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/transformYup/transformYup.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ const transformSchema = (data) => {
1919
if(yupType){
2020
let keysValidation: Array<any> = Object.keys(values);
2121
let structureFunction = `return ${yupType}${getKeys(keysValidation, values)}`;
22-
console.log(structureFunction);
23-
2422
let getSchema = new Function("yup", structureFunction);
2523
schema = { ...schema, [nameField]: getSchema(yup) };
2624
}

0 commit comments

Comments
 (0)