Skip to content

Commit d5ff81b

Browse files
committed
Remove param in call
1 parent 29cbd9b commit d5ff81b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ado2gh/Commands/AddTeamToRepo/AddTeamToRepoCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public async Task Handle(AddTeamToRepoCommandArgs args)
2626
_log.LogInformation("Adding team to repo...");
2727

2828
var teamSlug = await _githubApi.GetTeamSlug(args.GithubOrg, args.Team);
29-
await _githubApi.AddTeamToRepo(args.GithubOrg, args.GithubRepo, teamSlug, args.Role, args.TargetApiUrl);
29+
await _githubApi.AddTeamToRepo(args.GithubOrg, args.GithubRepo, teamSlug, args.Role);
3030

3131
_log.LogSuccess("Successfully added team to repo");
3232
}

0 commit comments

Comments
 (0)