diff --git a/frontend/components/FeedbackReport.tsx b/frontend/components/FeedbackReport.tsx index c783c27..fea0a45 100755 --- a/frontend/components/FeedbackReport.tsx +++ b/frontend/components/FeedbackReport.tsx @@ -74,6 +74,9 @@ const formatFeedbackText = (text: string): React.ReactNode => { if (bulletGroups.length === 0) { // Haven't started bullets yet — it's intro text introLines.push(trimmed); + } else if (/^\*{0,2}Recommendation:/.test(trimmed)) { + // Recommendation line gets its own bullet + bulletGroups.push([trimmed]); } else { // Continuation line within the current bullet bulletGroups[bulletGroups.length - 1].push(trimmed);