1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: Change wording of message while picking PRs

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-04-03 11:23:30 -04:00
parent 8a79482bde
commit 5d7ebefea6

View File

@ -328,7 +328,7 @@ async function pickRelevantPrs(prs: ExtendedGithubPrData[], isMasterBranch: bool
do {
selectedPrs = await pickWhichPRsToUse(prs);
} while (selectedPrs.length === 0 && (console.warn("[WARNING]: must pick at least once commit"), true));
} while (selectedPrs.length === 0 && (console.warn("[WARNING]: must pick at least one commit"), true));
await cherryPickCommits(selectedPrs);