diff --git a/src/components/shared/top-bar.tsx b/src/components/shared/top-bar.tsx
index 41fa7bf..854a2c4 100644
--- a/src/components/shared/top-bar.tsx
+++ b/src/components/shared/top-bar.tsx
@@ -18,6 +18,7 @@ export interface TopBarProps {
actor?: string;
onActorChange?: (name: string) => void;
onLaunchSwarm?: () => void;
+ onOpenBlockedTriage?: () => void;
}
interface MetricTileProps {
@@ -87,6 +88,7 @@ export function TopBar({
actor = '',
onActorChange,
onLaunchSwarm,
+ onOpenBlockedTriage,
}: TopBarProps) {
const { leftPanel, toggleLeftPanel, rightPanel, toggleRightPanel, blockedOnly, toggleBlockedOnly } = useUrlState();
const { isDesktop } = useResponsive();
@@ -126,9 +128,9 @@ export function TopBar({
{children ?? (
<>
-
);
}