Skip to content

Commit 71698dc

Browse files
committed
increase debounce
1 parent ecc55a5 commit 71698dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/pages/History/ActionSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export function ActionSearch({
190190
llmEffectsIdle?: boolean;
191191
}) {
192192
const inputRef = useRef<HTMLInputElement | null>(null);
193-
const debouncedHandleChange = useDebouncedCallback(onChange, 300);
193+
const debouncedHandleChange = useDebouncedCallback(onChange, 600);
194194

195195
useLayoutEffect(() => {
196196
if (inputRef.current) {

0 commit comments

Comments
 (0)