Skip to content

Commit

Permalink
more occurences
Browse files Browse the repository at this point in the history
  • Loading branch information
RulaKhaled committed Jan 20, 2025
1 parent 40dee26 commit 15702a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/AnalyticsPage/Chart/useCoverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const useCoverage = ({
repos: queryVars?.repositories,
before: queryVars?.endDate,
after: queryVars?.startDate,
isPublic: isTeamPlan ?? false,
isPublic: isTeamPlan === true ? true : undefined,
opts: {
staleTime: 30000,
keepPreviousData: false,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AnalyticsPage/ChartSelectors/ChartSelectors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function RepoSelector({
activated: active,
term: search,
first: Infinity,
isPublic: isTeamPlan,
isPublic: isTeamPlan === true ? true : null,
})
)

Expand Down

0 comments on commit 15702a4

Please sign in to comment.