Skip to content

Commit

Permalink
Corrected syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
johntopleyons committed Jun 12, 2023
1 parent 48e670c commit 4627da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/lib/github.rb
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ def secret_teams
secret_teams = []

while next_page
teams = @client.query(SECRET_TEAMS_QUERY, { login: @organisation, first: 100, after:
teams = @client.query(SECRET_TEAMS_QUERY, { login: @organisation, first: 100, after: })
raise GitHubError, teams.errors unless teams.errors.empty?

after = teams.data.organization.teams.page_info.end_cursor
Expand Down

0 comments on commit 4627da0

Please sign in to comment.