Skip to content

Commit

Permalink
fix: cursor -> prCursor
Browse files Browse the repository at this point in the history
Unused variable results in errors
  • Loading branch information
NickHackman committed Dec 12, 2024
1 parent 84f7a7b commit 03da765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/github/pull_request_reviews.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func GetAllPullRequestReviews(ctx context.Context, client models.Client, opts mo
if !q.Search.PageInfo.HasNextPage {
break
}
variables["cursor"] = q.Search.PageInfo.EndCursor
variables["prCursor"] = q.Search.PageInfo.EndCursor
}

return pullRequestReviews, nil
Expand Down

0 comments on commit 03da765

Please sign in to comment.