Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Nov 18, 2024
1 parent 5b1d71a commit 45cef60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/PaginatedTableCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const PaginatedTableCard = ({
method: "get",
action: loaderUrl,
});
// NOTE: dataFetcher is intentionally omitted from the useEffectdependency array
// NOTE: dataFetcher is intentionally omitted from the useEffect dependency array
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [loaderUrl, siteId, interval, filters, timezone, page]); //

Expand Down
2 changes: 1 addition & 1 deletion app/routes/resources.stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const StatsCard = ({
method: "get",
action: `/resources/stats`,
});
// NOTE: dataFetcher is intentionally omitted from the useEffectdependency array
// NOTE: dataFetcher is intentionally omitted from the useEffect dependency array
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [siteId, interval, filters, timezone]);

Expand Down
2 changes: 1 addition & 1 deletion app/routes/resources.timeseries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const TimeSeriesCard = ({
method: "get",
action: `/resources/timeseries`,
});
// NOTE: dataFetcher is intentionally omitted from the useEffectdependency array
// NOTE: dataFetcher is intentionally omitted from the useEffect dependency array
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [siteId, interval, filters, timezone]);

Expand Down

0 comments on commit 45cef60

Please sign in to comment.