Explorar o código

Merge pull request #4469 from ChatGPTNextWeb/chore-fix

feat: remove debug code
DeanYao hai 1 ano
pai
achega
984c79e2d2
Modificáronse 1 ficheiros con 0 adicións e 1 borrados
  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]);