fix(ui): restore agents in sidebar for ops quick access
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Has been cancelled
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 16:20:07 +01:00
parent 9f281c3354
commit e5be9f81e0

View File

@@ -118,7 +118,12 @@ function LayoutContent() {
name: r.routeId,
exchangeCount: r.exchangeCount,
})),
agents: [],
agents: (app.agents || []).map((a: any) => ({
id: a.id,
name: a.name,
status: a.status as 'live' | 'stale' | 'dead',
tps: a.tps,
})),
}));
}, [catalog]);