diff --git a/packages/slate-react/src/components/editable.tsx b/packages/slate-react/src/components/editable.tsx index 2e0ad3fe7b..a0c7438d29 100644 --- a/packages/slate-react/src/components/editable.tsx +++ b/packages/slate-react/src/components/editable.tsx @@ -1327,7 +1327,7 @@ const defaultScrollSelectionIntoView = ( domRange: DOMRange ) => { // This was affecting the selection of multiple blocks and dragging behavior, - // so enabled only if the selection is collapsed. + // so enabled only if the selection has been collapsed. if ( !editor.selection || (editor.selection && Range.isCollapsed(editor.selection))