diff --git a/main.js b/main.js index aad887b..48f4984 100644 --- a/main.js +++ b/main.js @@ -15,16 +15,16 @@ const progressDiv = document.getElementById("progress"); function renderPlatform(result) { const color = result.color || "white"; let html = `
`; - html += `
${result.name}
`; + html += `

${result.name}

`; if (result.error) { html += `
${result.error}
`; } if (result.items && result.items.length > 0) { - html += ""; + html += ""; } html += "
"; return html;