Remove persistent project inspector

This commit is contained in:
2026-07-20 12:45:13 +08:00
parent a299da63e7
commit 215268e836
3 changed files with 10 additions and 47 deletions

View File

@@ -1,7 +1,6 @@
import { Layout } from '@arco-design/web-react'
import { WorkspacePage } from './workspace'
import { ProjectChannelPage } from './projects/project-channel-page'
import { ProjectInspector } from './projects/project-inspector'
import { ProjectRail } from './projects/project-rail'
import { ProjectSidebar } from './projects/project-sidebar'
import { ProjectStatusbar } from './projects/project-statusbar'
@@ -14,7 +13,6 @@ export function ProjectPage({
activeView,
activeProject,
activeChannel,
selectedItem,
theme,
onSelectProject,
onSelectWorkspace,
@@ -25,7 +23,6 @@ export function ProjectPage({
activeView: WorkbenchView
activeProject: Project
activeChannel: ChannelKey
selectedItem: string
theme: Theme
onSelectProject: (project: Project) => void
onSelectWorkspace: () => void
@@ -69,14 +66,6 @@ export function ProjectPage({
)}
</Content>
{!isWorkspace && (
<ProjectInspector
activeView={activeView}
activeProject={activeProject}
activeChannel={activeChannel}
selectedItem={selectedItem}
/>
)}
</Layout>
<ProjectStatusbar />