feat(ui): show all repos on dashboard instead of top 24

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-05 18:09:34 +03:00
parent 45fd45f5da
commit c1e964de06

View File

@@ -14,7 +14,7 @@ export function DashPage() {
}); });
const projects = projectsQ.data ?? []; const projects = projectsQ.data ?? [];
const ranked = rankProjects(projects).slice(0, 24); const ranked = rankProjects(projects);
return ( return (
<> <>