This line ``` if (!(this.props.ignoreInertialScroll && this.isTouching)) { ``` Should be ``` if (!this.props.ignoreInertialScroll || this.isTouching) { ``` Another issue is that if I pull and hold, It will load the list multiple times.