From 7b23fbb57bdf97a25454dc753a1772ef1ca29190 Mon Sep 17 00:00:00 2001 From: AgentSeal Date: Wed, 15 Apr 2026 04:48:03 -0700 Subject: [PATCH] fix: pass provider to static dashboard for correct panel titles --- src/dashboard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dashboard.tsx b/src/dashboard.tsx index 10879b6..e35b96b 100644 --- a/src/dashboard.tsx +++ b/src/dashboard.tsx @@ -620,13 +620,13 @@ function InteractiveDashboard({ initialProjects, initialPeriod, initialProvider, ) } -function StaticDashboard({ projects, period }: { projects: ProjectSummary[]; period: Period }) { +function StaticDashboard({ projects, period, activeProvider }: { projects: ProjectSummary[]; period: Period; activeProvider?: string }) { const { columns } = useWindowSize() const { dashWidth } = getLayout(columns) return ( - + ) } @@ -645,7 +645,7 @@ export async function renderDashboard(period: Period = 'week', provider: string await waitUntilExit() } else { const { unmount } = render( - , + , { patchConsole: false } ) unmount()