From 623207f11c5710657eff80737b213a4252f97e10 Mon Sep 17 00:00:00 2001 From: faisolavolut Date: Wed, 19 Mar 2025 11:37:47 +0700 Subject: [PATCH] fix: reduce debounce time in TypeInput component from 2000ms to 1500ms for improved responsiveness --- components/form/field/TypeInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/field/TypeInput.tsx b/components/form/field/TypeInput.tsx index 0e7d190..6d62077 100644 --- a/components/form/field/TypeInput.tsx +++ b/components/form/field/TypeInput.tsx @@ -374,7 +374,7 @@ export const TypeInput: React.FC = ({ if (typeof onChange === "function") { onChange(fm.data[name]); } - }, 2000), + }, 1500), [] ); return (