Remove log

This commit is contained in:
Matt Bierner 2021-03-08 11:50:56 -08:00
parent 3cc479953c
commit 724bc08f90

View file

@ -292,7 +292,6 @@ export class CellDragAndDropController extends Disposable {
const cellHeight = this.list.elementHeight(target);
const dropDirection = this.getExplicitDragDropDirection(position.clientY, cellTop, cellHeight);
console.log(position.clientY);
const insertionIndicatorAbsolutePos = dropDirection === 'above' ? cellTop : cellTop + cellHeight;
this.updateInsertIndicator(dropDirection, insertionIndicatorAbsolutePos);
}