Skip to content

Commit

Permalink
fix(onboarding): remove superfluous <br /> (#29685)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jun 15, 2024
1 parent 0f6d22a commit c60880b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/workers/repository/onboarding/pr/pr-list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ describe('workers/repository/onboarding/pr/pr-list', () => {
</details>
<br />
🚸 Branch creation will be limited to maximum 1 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for \`prhourlylimit\` for details.
Expand Down
2 changes: 1 addition & 1 deletion lib/workers/repository/onboarding/pr/pr-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function getPrList(
prHourlyLimit < branches.length
) {
prDesc += emojify(
`<br />\n\n:children_crossing: Branch creation will be limited to maximum ${prHourlyLimit} per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for \`prhourlylimit\` for details.\n\n`,
`\n\n:children_crossing: Branch creation will be limited to maximum ${prHourlyLimit} per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for \`prhourlylimit\` for details.\n\n`,
);
}
return prDesc;
Expand Down

0 comments on commit c60880b

Please sign in to comment.