fix: reduce debounce time in TypeInput component from 2000ms to 1500ms for improved responsiveness

This commit is contained in:
faisolavolut 2025-03-19 11:37:47 +07:00
parent a6be768b68
commit 623207f11c
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ export const TypeInput: React.FC<any> = ({
if (typeof onChange === "function") {
onChange(fm.data[name]);
}
}, 2000),
}, 1500),
[]
);
return (