diff --git a/src/main/services/team/TeamProvisioningService.ts b/src/main/services/team/TeamProvisioningService.ts index b508e867..3a15f284 100644 --- a/src/main/services/team/TeamProvisioningService.ts +++ b/src/main/services/team/TeamProvisioningService.ts @@ -3154,14 +3154,9 @@ export class TeamProvisioningService { } } } else { - // Pre-ready: also push to live cache so Messages shows early narration - // once team:getData becomes readable. The banner still uses provisioningOutputParts. - if (!run.silentUserDmForward && !hasCapturedSendMessage) { - const cleanText = stripAgentBlocks(text).trim(); - if (cleanText.length > 0) { - this.pushLiveLeadTextMessage(run, cleanText); - } - } + // Pre-ready: provisioning narration is shown in the ProvisioningProgressBlock banner + // (via provisioningOutputParts). Do NOT push to live cache to avoid duplicate display + // and leaking internal provisioning monologue into the Activity timeline. } } diff --git a/src/renderer/components/chat/CompactBoundary.tsx b/src/renderer/components/chat/CompactBoundary.tsx index 8fb8d4b8..d23dc752 100644 --- a/src/renderer/components/chat/CompactBoundary.tsx +++ b/src/renderer/components/chat/CompactBoundary.tsx @@ -6,8 +6,6 @@ import { CODE_BORDER, COLOR_TEXT_MUTED, COLOR_TEXT_SECONDARY, - TOOL_CALL_BG, - TOOL_CALL_BORDER, TOOL_CALL_TEXT, } from '@renderer/constants/cssVariables'; import { REHYPE_PLUGINS } from '@renderer/utils/markdownPlugins'; @@ -27,14 +25,8 @@ interface CompactBoundaryProps { } /** - * CompactBoundary displays an interactive, collapsible marker indicating where - * the conversation was compacted. - * - * Features: - * - Minimalist design with subtle border and hover states - * - Click to expand/collapse compacted content - * - Scrollable content area with enforced max-height - * - Linear/Notion-inspired aesthetics + * CompactBoundary displays a horizontal divider indicating where + * the conversation was compacted. Click to expand the compacted summary. */ export const CompactBoundary = ({ compactGroup, @@ -64,70 +56,71 @@ export const CompactBoundary = ({ const compactContent = getCompactContent(); return ( -