diff --git a/frontend/src/components/flowpilot/FlowPilotStepCard.tsx b/frontend/src/components/flowpilot/FlowPilotStepCard.tsx index 2cf2b0d7..7355cf32 100644 --- a/frontend/src/components/flowpilot/FlowPilotStepCard.tsx +++ b/frontend/src/components/flowpilot/FlowPilotStepCard.tsx @@ -2,6 +2,7 @@ import { useState } from 'react' import { MessageSquare, Zap, CheckCircle2, SkipForward, ChevronDown, ChevronUp } from 'lucide-react' import { cn } from '@/lib/utils' import type { AISessionStepResponse, StepResponseRequest } from '@/types/ai-session' +import { MarkdownContent } from '@/components/ui/MarkdownContent' import { FlowPilotOptions } from './FlowPilotOptions' interface FlowPilotStepCardProps { @@ -94,7 +95,7 @@ export function FlowPilotStepCard({ step, isCurrentStep, isProcessing, onRespond -

{stepText}

+ ) } @@ -122,8 +123,8 @@ export function FlowPilotStepCard({ step, isCurrentStep, isProcessing, onRespond )}> -
-

{stepText}

+
+ {isResolutionSuggestion && typeof content.resolution_summary === 'string' && (

{content.resolution_summary}