From e51685dab412a85b4da7f7479851f93b55bc2655 Mon Sep 17 00:00:00 2001 From: Hiep Le <69354317+hieptl@users.noreply.github.com> Date: Mon, 3 Nov 2025 21:34:01 +0700 Subject: [PATCH] fix(frontend): there is insufficient padding below the code block. (#11615) --- frontend/src/components/features/markdown/paragraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/features/markdown/paragraph.tsx b/frontend/src/components/features/markdown/paragraph.tsx index 97cd933ce8..b488508395 100644 --- a/frontend/src/components/features/markdown/paragraph.tsx +++ b/frontend/src/components/features/markdown/paragraph.tsx @@ -7,5 +7,5 @@ export function paragraph({ }: React.ClassAttributes & React.HTMLAttributes & ExtraProps) { - return

{children}

; + return

{children}

; }