feat(getPageContentText): remove debug console.log from getPageContentText

Commented out console.log statement in getPageContentText.js
to remove debug output while maintaining the functionality.
This commit is contained in:
anime
2025-07-09 13:14:41 +08:00
parent b52f818154
commit 44ff4bcb23

View File

@@ -90,6 +90,6 @@ export function getPageContentText(post, pageBlockMap) {
}
}
}
console.log(contentTextList.join(''))
// console.log(contentTextList.join(''))
return contentTextList.join('')
}