fix(dashboard): pass content as children to ReactMarkdown

Self-closing <ReactMarkdown /> renders nothing — need children.

小橘 <xiaoju@shazhou.work>
This commit is contained in:
2026-05-09 10:58:33 +00:00
parent d96e10b0fc
commit c602d2284b
@@ -100,8 +100,9 @@ export function Markdown({ content }: { content: string }) {
</blockquote> </blockquote>
); );
}, },
}} }}>
/> {content}
</ReactMarkdown>
</div> </div>
); );
} }