Fixed: Remove debugger from OverlayScroller

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2018-09-14 22:01:07 -04:00
parent 4a17e43c82
commit 68f9df695b
1 changed files with 0 additions and 1 deletions

View File

@ -22,7 +22,6 @@ class OverlayScroller extends Component {
} = this.props;
if (!this._isScrolling && scrollTop != null && scrollTop !== prevProps.scrollTop) {
debugger;
this._scroller.scrollTop(scrollTop);
}
}