Skip to content

Commit

Permalink
fixed wrong name in log
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Oct 30, 2023
1 parent 7129931 commit 3224f60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/github/pullRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export class PullRequestApi {
if (users || teams) {
const validArray = (array: string[] | undefined): boolean => !!array && array.length > 0;
const reviewersLog = [
validArray(users) ? `Teams: ${JSON.stringify(users)}` : undefined,
validArray(teams) ? `Users: ${JSON.stringify(teams)}` : undefined,
validArray(users) ? `Users: ${JSON.stringify(users)}` : undefined,
validArray(teams) ? `Teams: ${JSON.stringify(teams)}` : undefined,
]
.filter((e) => !!e)
.join(" - ");
Expand Down

0 comments on commit 3224f60

Please sign in to comment.