Skip to content

Commit

Permalink
CDE-61 fix: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Aiga115 committed Feb 29, 2024
1 parent 57784d8 commit bd3e2f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/steps/mapping/MappingSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function MappingSearch({onChange}: MappingSearchProps) {

React.useEffect(() => {
onChange(debouncedSearchValue);
}, [debouncedSearchValue])
}, [debouncedSearchValue, onChange])


return <Box alignItems="center" display="flex" gap={1.5} mb={3}>
Expand Down

0 comments on commit bd3e2f9

Please sign in to comment.