diff --git a/src/main.js b/src/main.js
index 988646f..bf127b3 100644
--- a/src/main.js
+++ b/src/main.js
@@ -470,6 +470,8 @@ function buildUI(state) {
Max: --ms
|
Avg: --ms
+ |
+ Checks: 0
@@ -571,6 +573,9 @@ function updateSummary(state) {
el.className = "text-gray-500";
}
}
+
+ const checksEl = document.getElementById("summary-checks");
+ if (checksEl) checksEl.textContent = state.tickCount;
}
function updateHealthBox(state) {