Skip to content

Commit

Permalink
Fix comment build link formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gudahtt committed Dec 20, 2024
1 parent 201308c commit 3b32b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions development/metamaskbot-build-announce.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ async function start() {
);

const buildContentRows = Object.entries(verifiedBuildMap).map(
(label, builds) => {
const buildLinks = Object.entries(builds).map((platform, url) => {
([label, builds]) => {
const buildLinks = Object.entries(builds).map(([platform, url]) => {
return `<a href="${url}">${platform}</a>`;
});
return `${label}: ${buildLinks.join(', ')}`;
Expand Down

0 comments on commit 3b32b06

Please sign in to comment.