Skip to content

Commit 81a5a10

Browse files
committed
2 parents d6f506a + e92d030 commit 81a5a10

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/SimpleMarkdown.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ type SimpleMarkdownProps = {
7171
htmlMarkup?: string
7272
}
7373

74-
export function SimpleMarkdown({ rawContent, htmlMarkup }: SimpleMarkdownProps) {
74+
export function SimpleMarkdown({
75+
rawContent,
76+
htmlMarkup,
77+
}: SimpleMarkdownProps) {
7578
const rendered = React.useMemo(() => {
7679
if (rawContent) {
7780
return renderMarkdown(rawContent)

0 commit comments

Comments
 (0)