From b9eaf10623f7fcd0e604a36ef0cadff52d1caea4 Mon Sep 17 00:00:00 2001 From: adriangohjw Date: Wed, 7 Aug 2024 00:27:04 +0800 Subject: [PATCH] fix: paragraph markdown styling error --- frontend/src/templates/Field/Paragraph/ParagraphField.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/templates/Field/Paragraph/ParagraphField.tsx b/frontend/src/templates/Field/Paragraph/ParagraphField.tsx index 6ad48faba5..6cf5ecb321 100644 --- a/frontend/src/templates/Field/Paragraph/ParagraphField.tsx +++ b/frontend/src/templates/Field/Paragraph/ParagraphField.tsx @@ -25,8 +25,10 @@ export const ParagraphField = ({ }) return ( - - {schema.description} - +
+ + {schema.description} + +
) }