Browse Source

fix: remove truncation from compact agent value

Michael Henke 1 month ago
parent
commit
dc6c09e7d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/tui.ts

+ 1 - 1
src/tui.ts

@@ -140,7 +140,7 @@ function compactAgentRow(
     },
     [
       text({ fg: theme.textMuted, width: 14 }, [label]),
-      text({ fg: theme.textMuted }, [truncate(value, 40)]),
+      text({ fg: theme.textMuted }, [value]),
     ],
   );
 }