diff --git a/public/index.html b/public/index.html
index c217ae4..5d9e6a1 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1688,6 +1688,8 @@
${emptyTitl
};
const refreshApiCalls = Math.ceil(allPrs.length / 50);
+ const uniqueRepoCount = new Set(allPrs.map(p => p.repo_owner + '/' + p.repo_name)).size;
+ const repoApiCalls = uniqueRepoCount * 2;
// Each readiness check fetches at least 4 GitHub endpoints in parallel:
// commits, reviews, review_comments, issue_comments
// NOTE: This is a lower-bound estimate; pagination can require additional API calls per PR.
@@ -1709,8 +1711,14 @@ ${emptyTitl
+