From 92cc501a5efbff565afaa70d99622d52e4ebf45b Mon Sep 17 00:00:00 2001 From: Rahul Vyas Date: Fri, 3 Jul 2026 18:39:22 +0530 Subject: [PATCH] fix: update top repos selection to include all repositories --- src/pages/NetworkPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/NetworkPage.jsx b/src/pages/NetworkPage.jsx index 9359655..9a3185b 100644 --- a/src/pages/NetworkPage.jsx +++ b/src/pages/NetworkPage.jsx @@ -27,7 +27,7 @@ export default function NetworkPage() { svg.attr('viewBox', `0 0 ${W} ${H}`) // Top repos and contributors for performance - const topRepos = model.allRepos.slice(0, 30) + const topRepos = model.allRepos const topContribs = model.contributors const nodes = []