diff --git a/React/Views/RCTRefreshControl.m b/React/Views/RCTRefreshControl.m index ee73bf9a475565..37b3bb3baf7d61 100644 --- a/React/Views/RCTRefreshControl.m +++ b/React/Views/RCTRefreshControl.m @@ -72,7 +72,7 @@ - (void)endRefreshing // endRefreshing otherwise the next pull to refresh will not work properly. UIScrollView *scrollView = (UIScrollView *)self.superview; if (scrollView.contentOffset.y < 0) { - CGPoint offset = {scrollView.contentOffset.x, -scrollView.contentInset.top}; + CGPoint offset = {scrollView.contentOffset.x, 0}; [UIView animateWithDuration:0.25 delay:0 options:UIViewAnimationOptionBeginFromCurrentState