diff --git a/src/Form/index.tsx b/src/Form/index.tsx index 5225876..cd05d5f 100644 --- a/src/Form/index.tsx +++ b/src/Form/index.tsx @@ -148,10 +148,6 @@ const Form: FunctionComponent = ({ const matchingField = findFields(form, key)?.[0]; if (fieldIsField(matchingField) && matchingField?.onBeforeSubmit) { - console.log({ - onBeforeSubmit: matchingField.onBeforeSubmit(value), - key, - }); response[key] = matchingField.onBeforeSubmit(value); return;