// [nexus] Phase 11 — Project Detail ORG tab. // // BLOCKED on component gap: the existing Org/OrgChart pages render // company-wide reporting trees. There's no project-scoped org tree in // the backend (agents.org() returns a company tree), and no reusable // component with a projectId filter prop. Phase 11 is not permitted // to modify those pages. // // Note the BuilderTabStrip hides the ORG tab entirely for single-agent // projects (spec §7.2.7 + ProjectDetail integration). This placeholder // only renders when a project has at least 2 agents *and* the user // clicks ORG. import { TabPlaceholder } from "./TabPlaceholder"; export interface OrgTabProps { projectId: string; } export function OrgTab({ projectId: _projectId }: OrgTabProps) { return ( Per-project org chart not yet wired. agents.org() returns a company-wide reporting tree; there's no project-scoped variant today. A follow-up ticket will land a server endpoint and reusable component that accepts a projectId filter. } /> ); }