diff --git a/apps/ai-game-creator-shell/src/features/project-workspace/ProjectSupervisorView.tsx b/apps/ai-game-creator-shell/src/features/project-workspace/ProjectSupervisorView.tsx index 6bead003f..a0f965ca2 100644 --- a/apps/ai-game-creator-shell/src/features/project-workspace/ProjectSupervisorView.tsx +++ b/apps/ai-game-creator-shell/src/features/project-workspace/ProjectSupervisorView.tsx @@ -427,28 +427,6 @@ export function ProjectSupervisorView({ {`显示更早 · 还有 ${hiddenConversationCount} 条对话`} ) : null} - {showDesignReasoning && - designReasoningEntries - .filter((entry) => !entry.messageId) - .map((entry) => ( -
- 思考过程 -
{entry.text}
-
- ))} - {showDesignReasoning && designReasoning ? ( -
- 思考过程 -
{designReasoning}
-
- ) : null} {visibleMessages.map((message, index) => { const anchoredToolCalls = message.messageId ? (toolCallsByAnchor.get(message.messageId) ?? []) @@ -493,6 +471,28 @@ export function ProjectSupervisorView({ className="message-tool-call" /> ) : null} + {showDesignReasoning && + designReasoningEntries + .filter((entry) => !entry.messageId) + .map((entry) => ( +
+ 思考过程 +
{entry.text}
+
+ ))} + {showDesignReasoning && designReasoning ? ( +
+ 思考过程 +
{designReasoning}
+
+ ) : null} {!directCodex && transientReply ? (