Skip to content

Commit

Permalink
revert converting isPublic to a boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-codecov committed Jan 6, 2025
1 parent 245204e commit d973d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/repos/ReposQueryOpts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function ReposQueryOpts({
isPublic = null, // by default, get both public and private repos
}: ReposQueryArgs) {
const variables = {
filters: { activated, term, repoNames, isPublic: Boolean(isPublic) },
filters: { activated, term, repoNames, isPublic },
ordering: sortItem?.ordering,
direction: sortItem?.direction,
first,
Expand Down

0 comments on commit d973d64

Please sign in to comment.