From 3600166dc537fef4563a4a131f3bf2a6f83109ac Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 17 May 2025 21:07:56 -0400 Subject: [PATCH] set inner html for correct display --- frontend/components/PostBody.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/components/PostBody.tsx b/frontend/components/PostBody.tsx index 163ebce..0af0797 100644 --- a/frontend/components/PostBody.tsx +++ b/frontend/components/PostBody.tsx @@ -2,7 +2,10 @@ import { Post } from "../types/index.ts"; export const PostBody = function PostBody({ post }: PostBodyOpts) { return ( -
{post.body}
+
); };