Skip to content

Commit

Permalink
fix infinite loading (#9354)
Browse files Browse the repository at this point in the history
  • Loading branch information
manmeetnagii authored Dec 11, 2024
1 parent 1f173e8 commit 67f9c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/AutoCompleteAsync.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const AutoCompleteAsync = (props: Props) => {

useEffect(() => {
fetchDataDebounced(query);
}, [query, fetchDataDebounced]);
}, [query]);

return (
<div className={className}>
Expand Down

0 comments on commit 67f9c6e

Please sign in to comment.