chore: remove debug console.log statements from ReportEditor

Co-Authored-By: nate@buster.so <nate@buster.so>
This commit is contained in:
Devin AI 2025-09-10 16:22:42 +00:00
parent 8f24417c44
commit 494f73bf17
1 changed files with 0 additions and 2 deletions

View File

@ -109,10 +109,8 @@ export const ReportEditor = React.memo(
editor: TPlateEditor<Value, AnyPluginConfig>;
}) => {
if (isReady.current && !readOnly && onValueChange && !isStreaming) {
console.log('value', value);
platejsToMarkdown(editor, value as ReportElementsWithIds)
.then((markdown) => {
console.log('markdown', markdown);
onValueChange(markdown);
})
.catch((error) => {