diff --git a/frontend/components/FeedbackReport.tsx b/frontend/components/FeedbackReport.tsx index 2e8d02f..c783c27 100755 --- a/frontend/components/FeedbackReport.tsx +++ b/frontend/components/FeedbackReport.tsx @@ -41,6 +41,8 @@ const formatFeedbackText = (text: string): React.ReactNode => { // First, handle HTML tags by converting them to a normalized format let normalizedText = text + // Convert literal \n sequences to real newlines + .replace(/\\n/g, '\n') // Replace and with newlines .replace(/<\/li>/gi, '\n') .replace(/<\/ul>/gi, '\n')