From 8aa663d169333679600e008ebc4b91a0d0bf7919 Mon Sep 17 00:00:00 2001 From: faisolavolut Date: Fri, 28 Feb 2025 13:56:55 +0700 Subject: [PATCH] fix: remove unnecessary console logs in TypeTag component for cleaner code --- components/form/field/TypeTag.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/form/field/TypeTag.tsx b/components/form/field/TypeTag.tsx index 5942b57..2641dd7 100644 --- a/components/form/field/TypeTag.tsx +++ b/components/form/field/TypeTag.tsx @@ -23,10 +23,8 @@ export const TypeTag: React.FC = ({ } }, [val]); useEffect(() => { - console.log("MASUK", tags); fm.data[name] = tags; fm.render(); - console.log("MASUK"); if (typeof onChange === "function") { onChange(tags); }