From c9a9df1cfb4fd769098b2361406710a1ef638fec Mon Sep 17 00:00:00 2001 From: Stephan van den Berkmortel Date: Tue, 24 Mar 2026 11:17:45 +0100 Subject: [PATCH] Remove console log --- packages/quill/src/core/quill.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/quill/src/core/quill.ts b/packages/quill/src/core/quill.ts index 3e4a6594f6..689373a5a4 100644 --- a/packages/quill/src/core/quill.ts +++ b/packages/quill/src/core/quill.ts @@ -705,7 +705,6 @@ class Quill { scrollSelectionIntoView() { const range = this.selection.lastRange; const bounds = range && this.selection.getBounds(range.index, range.length); - console.log('[scrollSelectionIntoView] range:', JSON.stringify(range), 'bounds:', bounds ? JSON.stringify({top: bounds.top, bottom: bounds.bottom, left: bounds.left, right: bounds.right}) : null); if (bounds) { this.scrollRectIntoView(bounds); }