fix: reduce debounce time in TypeInput component from 2000ms to 1500ms for improved responsiveness
This commit is contained in:
parent
a6be768b68
commit
623207f11c
|
|
@ -374,7 +374,7 @@ export const TypeInput: React.FC<any> = ({
|
|||
if (typeof onChange === "function") {
|
||||
onChange(fm.data[name]);
|
||||
}
|
||||
}, 2000),
|
||||
}, 1500),
|
||||
[]
|
||||
);
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in New Issue