diff --git a/settings.js b/settings.js index 33fc4cd..5cbdbca 100644 --- a/settings.js +++ b/settings.js @@ -187,8 +187,6 @@ fetch(`https://api.github.com/repos/${username}/${repo}/commits?per_page=1`) const totalCount = response.headers.get('Link').match(/page=(\d+)>; rel="last"/)[1] / 100; return response.json().then(data => { const latestCommitMessage = data[0].commit.message; - console.log(`Total commit count: ${totalCount}`); - console.log(`Latest commit message: ${latestCommitMessage}`); document.getElementById("version").innerText = `Version ${totalCount} Release Notes`; document.getElementById("whats-new").innerText = latestCommitMessage;