diff --git a/components/form/field/TypeInput.tsx b/components/form/field/TypeInput.tsx index 5238274..d141026 100644 --- a/components/form/field/TypeInput.tsx +++ b/components/form/field/TypeInput.tsx @@ -375,9 +375,6 @@ export const TypeInput: React.FC = ({ () => debounce(() => { if (typeof onChange === "function" && latestValueRef.current !== null) { - console.log("onChange", latestValueRef.current); - fm.data[name] = latestValueRef.current; - fm.render(); onChange(latestValueRef.current); } }, 1000),