diff --git a/web/app/components/base/markdown.tsx b/web/app/components/base/markdown.tsx index fb0cf5bb44..77ddcabed9 100644 --- a/web/app/components/base/markdown.tsx +++ b/web/app/components/base/markdown.tsx @@ -162,14 +162,17 @@ export function Markdown(props: { content: string; className?: string }) { const image = node.children[0] return ( - // eslint-disable-next-line @next/next/no-img-element - {image.properties.alt} + <> + {/* eslint-disable-next-line @next/next/no-img-element */} + {image.properties.alt} +

{paragraph.children.slice(1)}

+ ) } return

{paragraph.children}