diff --git a/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx b/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx index 956663b2..86232356 100644 --- a/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx +++ b/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx @@ -2,6 +2,8 @@ import React from 'react'; import type { TagProps } from '../bbcode/type'; export const PlainText: React.FC = React.memo((props) => ( -
{props.children}
+
+    {props.children}
+  
)); PlainText.displayName = 'PlainText';