From c1e964de0685fbe4bb61d391e55bfa65c530a90e Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Tue, 5 May 2026 18:09:34 +0300 Subject: [PATCH] feat(ui): show all repos on dashboard instead of top 24 Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/DashPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/DashPage.tsx b/ui/src/pages/DashPage.tsx index cea0d6f..f7033c9 100644 --- a/ui/src/pages/DashPage.tsx +++ b/ui/src/pages/DashPage.tsx @@ -14,7 +14,7 @@ export function DashPage() { }); const projects = projectsQ.data ?? []; - const ranked = rankProjects(projects).slice(0, 24); + const ranked = rankProjects(projects); return ( <>