From 5e3cfe6aa6a2bb4f50374af89d7fb6a34a4d1dbd Mon Sep 17 00:00:00 2001 From: AdingApkgg Date: Wed, 2 Jul 2025 06:21:05 +0800 Subject: [PATCH] 250702 --- main.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;