tycono 0.3.39 → 0.3.40

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.39",
3
+ "version": "0.3.40",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -123,8 +123,7 @@ const PanelModeInner: React.FC<PanelModeProps> = ({
123
123
  useInput((input, key) => {
124
124
  if (key.escape) {
125
125
  if (docsPreview) { setDocsPreview(false); return; }
126
- // Panel→Command mode switch handled by app.tsx global handler
127
- return;
126
+ onEscape(); return;
128
127
  }
129
128
  if (input === 'h' || key.leftArrow) {
130
129
  const tabs: RightTab[] = ['stream', 'docs', 'info'];