浏览代码

feat: remove debug code

butterfly 1 年之前
父节点
当前提交
6cb296f952
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      app/components/markdown.tsx

+ 0 - 1
app/components/markdown.tsx

@@ -136,7 +136,6 @@ function escapeBrackets(text: string) {
 
 function _MarkDownContent(props: { content: string }) {
   const escapedContent = useMemo(() => {
-    console.log("================", props.content);
     return escapeBrackets(escapeDollarNumber(props.content));
   }, [props.content]);