Merge branch 'main' into fix/ios-pwa-status-bar-overlap

This commit is contained in:
viper151
2025-09-15 17:40:44 +02:00
committed by GitHub
8 changed files with 312 additions and 68 deletions

View File

@@ -15,7 +15,7 @@ import React, { useState, useEffect } from 'react';
import ChatInterface from './ChatInterface';
import FileTree from './FileTree';
import CodeEditor from './CodeEditor';
import Shell from './Shell';
import StandaloneShell from './StandaloneShell';
import GitPanel from './GitPanel';
import ErrorBoundary from './ErrorBoundary';
import ClaudeLogo from './ClaudeLogo';
@@ -436,10 +436,11 @@ function MainContent({
<FileTree selectedProject={selectedProject} />
</div>
<div className={`h-full overflow-hidden ${activeTab === 'shell' ? 'block' : 'hidden'}`}>
<Shell
selectedProject={selectedProject}
selectedSession={selectedSession}
<StandaloneShell
project={selectedProject}
session={selectedSession}
isActive={activeTab === 'shell'}
showHeader={false}
/>
</div>
<div className={`h-full overflow-hidden ${activeTab === 'git' ? 'block' : 'hidden'}`}>