From 52a48a03f6094d89d65df66766a392d49117ec5b Mon Sep 17 00:00:00 2001 From: abhay-codes07 Date: Fri, 14 Aug 2026 23:46:04 +0530 Subject: [PATCH] fix(web): drop debug console.log that logged note content on every keystroke FullscreenNoteModal's onChange handler ran `console.log("handleContentChange", newContent)` on every edit, spamming the production console with the full note body as the user types. Remove it. --- apps/web/components/fullscreen-note-modal.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/components/fullscreen-note-modal.tsx b/apps/web/components/fullscreen-note-modal.tsx index 634987929..276576608 100644 --- a/apps/web/components/fullscreen-note-modal.tsx +++ b/apps/web/components/fullscreen-note-modal.tsx @@ -61,7 +61,6 @@ export function FullscreenNoteModal({ const handleContentChange = useCallback( (newContent: string) => { - console.log("handleContentChange", newContent) setContent(newContent) setDraft(newContent) },