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
commit 984c79e2d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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]);