Skip to content

Commit

Permalink
fix: disable exhaustive-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
noctera committed Dec 18, 2022
1 parent 7ba8b33 commit 0084a42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Forms/ImportPreviewForm/GroupPreview/GroupPreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const GroupPreview = ({

useEffect(() => {
fetchPackages();
}, [fetchPackages]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);

const packageAdded = useCallback(
(newPackage) => {
Expand Down

0 comments on commit 0084a42

Please sign in to comment.