This commit is contained in:
GH Action - Upstream Sync
2024-04-10 00:58:51 +00:00
7 changed files with 83 additions and 18 deletions

View File

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