diff --git a/src/components/input/DebouncedTextInput.tsx b/src/components/input/DebouncedTextInput.tsx index 61dbf61c..4b62aaf7 100644 --- a/src/components/input/DebouncedTextInput.tsx +++ b/src/components/input/DebouncedTextInput.tsx @@ -28,7 +28,7 @@ const DebouncedTextInput = (props: DebouncedTextInputProps) => { if (debouncedChangeEvent) { onChange?.(debouncedChangeEvent); } - }, [debouncedValue, debouncedChangeEvent, onChange]); + }, [debouncedValue]); return (