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()