From 82af4837806904e9edd1dcf0963e1ef2103668c8 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Tue, 21 Jul 2026 11:37:21 +0800 Subject: [PATCH] fix: remove AI agent page header --- apps/web_v1/src/pages/projects/project-ai.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/apps/web_v1/src/pages/projects/project-ai.tsx b/apps/web_v1/src/pages/projects/project-ai.tsx index 23b3f5e..e3bd151 100644 --- a/apps/web_v1/src/pages/projects/project-ai.tsx +++ b/apps/web_v1/src/pages/projects/project-ai.tsx @@ -10,18 +10,11 @@ import type { AISession, ProjectWorkspace } from './project-types' const { Title, Text } = Typography export function ProjectAi({ activeWorkspace, onSelectItem }: { activeWorkspace: ProjectWorkspace; onSelectItem: (title: string) => void }) { - const { aiSessions, project } = activeWorkspace + const { aiSessions } = activeWorkspace const groupedSessions = groupSessions(aiSessions) return (
-
-
- AI智能体 - {project.name} 的项目内智能体工作台,选择专家后开始上下文对话。 -
-
-