(q: string)
| 324 | }; |
| 325 | |
| 326 | const handleSearchChange = (q: string) => { |
| 327 | setSearch(q); |
| 328 | if (debounceRef.current) clearTimeout(debounceRef.current); |
| 329 | debounceRef.current = setTimeout(() => doSearch(q), 300); |
| 330 | }; |
| 331 | |
| 332 | const handleSelect = (v: string) => { |
| 333 | onChange(v); |
no outgoing calls
no test coverage detected