tycono 0.3.14-beta.8 → 0.3.14-beta.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tycono",
3
- "version": "0.3.14-beta.8",
3
+ "version": "0.3.14-beta.9",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/tui/app.tsx CHANGED
@@ -713,10 +713,8 @@ export const App: React.FC = () => {
713
713
  </Box>
714
714
  );
715
715
  }
716
- // Cap panel width to prevent yoga OOM on very wide terminals (245+ columns)
717
- const panelWidth = Math.min(process.stdout.columns || 120, 160);
718
716
  return (
719
- <Box flexDirection="column" height={termHeight} width={panelWidth}>
717
+ <Box flexDirection="column">
720
718
  <Box flexGrow={1} flexDirection="column">
721
719
  <PanelMode
722
720
  tree={orgTree}
@@ -401,7 +401,7 @@ const PanelModeInner: React.FC<PanelModeProps> = ({
401
401
  <Text color="gray">{separatorStr}</Text>
402
402
 
403
403
  {/* Right: Tabbed panel */}
404
- <Box flexGrow={1} flexDirection="column" overflow="hidden">
404
+ <Box flexGrow={1} flexDirection="column">
405
405
  {/* Tab bar */}
406
406
  <Box paddingX={1} marginBottom={0}>
407
407
  {(['stream', 'docs', 'info'] as RightTab[]).map(tab => (