From 494f73bf176ba65302660b2b11aef1fa29f3bfc1 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 10 Sep 2025 16:22:42 +0000 Subject: [PATCH] chore: remove debug console.log statements from ReportEditor Co-Authored-By: nate@buster.so --- apps/web/src/components/ui/report/ReportEditor.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/web/src/components/ui/report/ReportEditor.tsx b/apps/web/src/components/ui/report/ReportEditor.tsx index d8cc7f7da..3d36edf25 100644 --- a/apps/web/src/components/ui/report/ReportEditor.tsx +++ b/apps/web/src/components/ui/report/ReportEditor.tsx @@ -109,10 +109,8 @@ export const ReportEditor = React.memo( editor: TPlateEditor; }) => { 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) => {