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); }