Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jgkawell committed Feb 2, 2025
1 parent 97fd56b commit 7ec1c96
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ function PlatformComponents() {
});
};

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

return (
<>
Expand Down Expand Up @@ -236,9 +235,8 @@ function SystemComponents() {
useInstallOSUpdate.mutate({});
};

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

return (
<>
Expand Down

0 comments on commit 7ec1c96

Please sign in to comment.