- {/* Explanation */}
- {activePlan?.explanation ? (
-
- {activePlan.explanation}
-
- ) : null}
-
- {/* Plan Steps */}
- {activePlan && activePlan.steps.length > 0 ? (
-
-
- Steps
-
- {activePlan.steps.map((step) => (
-
- {stepStatusIcon(step.status)}
-
- {step.step}
-
-
- ))}
-
- ) : null}
-
- {/* Proposed Plan Markdown */}
- {planMarkdown ? (
-
-
- {proposedPlanExpanded ? (
-
-
-
- ) : null}
-
- ) : null}
-
- {/* Empty state */}
- {!activePlan && !planMarkdown ? (
-
-
No active plan yet.
-
- Plans will appear here when generated.
-
-
- ) : null}
-
-