feat: remove debug code

This commit is contained in:
butterfly 2024-04-09 09:12:18 +08:00
parent db533fc166
commit 6cb296f952
1 changed files with 0 additions and 1 deletions

View File

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