tycono 0.3.40 → 0.3.41
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 +1 -1
- package/src/tui/app.tsx +2 -2
package/package.json
CHANGED
package/src/tui/app.tsx
CHANGED
|
@@ -762,7 +762,7 @@ export const App: React.FC = () => {
|
|
|
762
762
|
/>
|
|
763
763
|
</Box>
|
|
764
764
|
)}
|
|
765
|
-
{mode
|
|
765
|
+
<Box display={mode === 'panel' ? 'none' : 'flex'} flexDirection="column">
|
|
766
766
|
<CommandMode
|
|
767
767
|
eventLines={eventLines}
|
|
768
768
|
systemMessages={systemMessages}
|
|
@@ -777,7 +777,7 @@ export const App: React.FC = () => {
|
|
|
777
777
|
activeSessions={api.activeSessions}
|
|
778
778
|
focusedWaveId={focusedWaveId}
|
|
779
779
|
/>
|
|
780
|
-
</Box>
|
|
780
|
+
</Box>
|
|
781
781
|
<StatusBar
|
|
782
782
|
companyName={api.company?.name ?? 'Loading...'}
|
|
783
783
|
waveIndex={focusedWaveIndex}
|