Skip to content

Commit

Permalink
fix: fix warning in DataFilters file
Browse files Browse the repository at this point in the history
 unnecessary dependency was included
  • Loading branch information
benlister-okta committed Jan 22, 2024
1 parent 70a38a1 commit d82cdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/odyssey-react-mui/src/labs/DataFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const DataFilters = ({
({ filterId, value }: { filterId: string; value: DataFilterValue }) => {
setInputValues({ ...inputValues, [filterId]: value });
},
[inputValues, filtersProp]
[inputValues]
);

const updateFilters = useCallback(
Expand Down

0 comments on commit d82cdde

Please sign in to comment.