diff --git a/frontend/components/FeedbackReport.tsx b/frontend/components/FeedbackReport.tsx
index 3fb2e3c..b1c7a16 100755
--- a/frontend/components/FeedbackReport.tsx
+++ b/frontend/components/FeedbackReport.tsx
@@ -87,28 +87,16 @@ const formatFeedbackText = (text: string): React.ReactNode => {
{renderBoldMarkdown(introLines.join(' '))}
)}
{bulletGroups.length > 0 && (
-
- {bulletGroups.map((group, index) => {
- const mainLines = group.filter(line => !/^\*{0,2}Recommendation:/.test(line));
- const recLines = group.filter(line => /^\*{0,2}Recommendation:/.test(line));
- return (
- -
- {mainLines.map((line, lineIdx) => (
-
- {lineIdx > 0 &&
}
- {renderBoldMarkdown(line)}
-
- ))}
- {recLines.length > 0 && (
-
- {recLines.map((line, lineIdx) => (
- - {renderBoldMarkdown(line)}
- ))}
-
- )}
-
- );
- })}
+
+ {bulletGroups.map((group, index) => (
+
+ {group.map((line, lineIdx) => (
+ - 0 ? 'mt-3' : ''}>
+ {renderBoldMarkdown(line)}
+
+ ))}
+
+ ))}
)}
>