Skip to content

Commit

Permalink
fix(sequential-calls): Use push instead of concat when returning rele…
Browse files Browse the repository at this point in the history
…ases (#1865)
  • Loading branch information
erezrokah authored Mar 7, 2023
1 parent 8027800 commit 1026c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ export class Manifest {
releasesByPullRequest[pullNumber],
pullRequestsByNumber[pullNumber]
);
resultReleases.concat(releases);
resultReleases.push(...releases);
}
return resultReleases;
} else {
Expand Down

0 comments on commit 1026c73

Please sign in to comment.