Skip to content

Commit 81e95d2

Browse files
AI Insights
1 parent 07b02d3 commit 81e95d2

File tree

7 files changed

+1374
-100
lines changed

7 files changed

+1374
-100
lines changed

mcpjam-inspector/client/src/components/CiEvalsTab.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function CiEvalsTab({ convexWorkspaceId }: CiEvalsTabProps) {
3636
const [deletingSuiteId, setDeletingSuiteId] = useState<string | null>(null);
3737
const [deletingRunId, setDeletingRunId] = useState<string | null>(null);
3838
const [filterTag, setFilterTag] = useState<string | null>(null);
39-
const [sidebarMode, setSidebarMode] = useState<SidebarMode>("suites");
39+
const [sidebarMode, setSidebarMode] = useState<SidebarMode>("runs");
4040

4141
const selectedSuiteId =
4242
route.type === "suite-overview" ||
@@ -331,6 +331,7 @@ export function CiEvalsTab({ convexWorkspaceId }: CiEvalsTabProps) {
331331
const entry = sdkSuites.find((e) => e.suite._id === suiteId);
332332
if (entry) handlers.handleRerun(entry.suite);
333333
}}
334+
allCommitGroups={commitGroups}
334335
/>
335336
) : queries.isSuiteDetailsLoading ? (
336337
<div className="flex h-full items-center justify-center">

0 commit comments

Comments
 (0)