Merge pull request #4469 from ChatGPTNextWeb/chore-fix

feat: remove debug code
This commit is contained in:
DeanYao
2024-04-09 09:13:07 +08:00
committed by GitHub

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]);