diff --git a/platform/wab/src/wab/client/components/comments/CommentPost.tsx b/platform/wab/src/wab/client/components/comments/CommentPost.tsx index c81e242f379..ab7c4e91aea 100644 --- a/platform/wab/src/wab/client/components/comments/CommentPost.tsx +++ b/platform/wab/src/wab/client/components/comments/CommentPost.tsx @@ -18,6 +18,7 @@ import { OnClickAway } from "@/wab/commons/components/OnClickAway"; import { ApiCommentReaction, CommentId } from "@/wab/shared/ApiSchema"; import { fullName } from "@/wab/shared/ApiSchemaUtil"; import { ensure, ensureString, maybe, spawn } from "@/wab/shared/common"; +import { StandardMarkdown } from "@/wab/client/utils/StandardMarkdown"; import { HTMLElementRefOf } from "@plasmicapp/react-web"; import { Menu, Tooltip } from "antd"; import Popover from "antd/lib/popover"; @@ -197,7 +198,7 @@ function CommentPost_(props: CommentPostProps, ref: HTMLElementRefOf<"div">) { ); }} > - {comment.body} + {comment.body} } timestamp={moment(comment.createdAt).fromNow()}