From b031a0421788e4aa11bbd0d21aecaac1ab4ebabb Mon Sep 17 00:00:00 2001 From: Fabio Wakim Trentini Date: Thu, 11 Jun 2026 16:07:40 -0300 Subject: [PATCH] refactor(dashboard): drop the repository list from the org dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dashboard ended with a full RepoList after Hyper Engineers, duplicating the dedicated /repos page that exists for exactly that. Drop the section (and its import) from the dashboard; the same RepoList component still powers /[tenant]/repos, so the list lives in one place. No data wiring changed — repoSummaries is still consumed by every other dashboard section. Co-Authored-By: Claude Opus 4.8 (1M context) --- platform/src/app/[tenant]/dashboard/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/platform/src/app/[tenant]/dashboard/page.tsx b/platform/src/app/[tenant]/dashboard/page.tsx index 322d08a..b2fec4a 100644 --- a/platform/src/app/[tenant]/dashboard/page.tsx +++ b/platform/src/app/[tenant]/dashboard/page.tsx @@ -3,7 +3,6 @@ import { notFound, redirect } from "next/navigation"; import { getServerSession } from "next-auth/next"; -import { RepoList } from "./repo-list"; import { AIAgentUsage } from "./sections/AIAgentUsage"; import { AIDeliveryTimeline } from "./sections/AIDeliveryTimeline"; import { AIvsHuman } from "./sections/AIvsHuman"; @@ -249,9 +248,6 @@ export default async function OrgDashboardPage({ {/* Hyper engineers — restrito a owner/admin */} {canSeeHyperEngineers && } - - {/* Repo list */} - ); }