@dylanrussell/agent-router 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tui.js CHANGED
@@ -15424,14 +15424,14 @@ function buildSidebarNodes(snapshot, ctx) {
15424
15424
  }
15425
15425
  nodes.push(text("Current Stack", { fg: theme.text, attributes: TEXT_ATTR_BOLD }));
15426
15426
  if (snapshot.agents.length === 0) {
15427
- nodes.push(text("\u2022 (none)", { fg: theme.success }));
15427
+ nodes.push(text("\u2022 (none)", { fg: theme.textMuted }));
15428
15428
  } else {
15429
15429
  for (const { agent, model } of snapshot.agents) {
15430
15430
  nodes.push({
15431
15431
  kind: "box",
15432
- props: { flexDirection: "row" },
15432
+ props: { flexDirection: "row", gap: 1 },
15433
15433
  children: [
15434
- text("\u2022 ", { fg: theme.success }),
15434
+ text("\u2022", { flexShrink: 0, style: { fg: theme.success } }),
15435
15435
  text(`${agent} \u2192 ${model}`, { fg: theme.textMuted })
15436
15436
  ]
15437
15437
  });