diff --git a/web/src/components/MemoContent/index.tsx b/web/src/components/MemoContent/index.tsx
index 50ecfb8ca..90ecc48ab 100644
--- a/web/src/components/MemoContent/index.tsx
+++ b/web/src/components/MemoContent/index.tsx
@@ -124,10 +124,14 @@ const MemoContent = (props: MemoContentProps) => {
// Code blocks
pre: CodeBlock,
// Tables
- table: ({ children, ...props }) =>
,
- thead: ({ children, ...props }) => {children},
- tbody: ({ children, ...props }) => {children},
- tr: ({ children, ...props }) => {children},
+ table: ({ children, node, ...props }) => (
+
+ ),
+ thead: ({ children }) => {children},
+ tbody: ({ children }) => {children},
+ tr: ({ children }) => {children},
th: ({ children, ...props }) => {children},
td: ({ children, ...props }) => {children},
}}