diff --git a/index.html b/index.html index a554542..3fdef1a 100644 --- a/index.html +++ b/index.html @@ -235,7 +235,6 @@ footer a{color:var(--accent);text-decoration:none}
0
Online
0
Servers
-
Block
@@ -451,9 +450,6 @@ function render() { const online = allServers.filter(d => d.status === "OK").length; document.getElementById('s-online').textContent = online; document.getElementById('s-total').textContent = allServers.length; - // Highest known block across all servers (the list is ranked by fee/points, not by height) - const maxBlock = allServers.reduce((m, d) => Math.max(m, d.last_block || 0), 0); - document.getElementById('s-block').textContent = maxBlock ? fmt(maxBlock) : '—'; } async function fetchData() {