From ae159b9617e7beea83bc3b84bf7e8344325c6c20 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 4 Oct 2025 12:15:06 +0700 Subject: [PATCH] chore(FE-40): remove unnecessary dependencies --- src/components/input/DebouncedTextInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (