diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index 39330fe2f6220a..a99f54eb226aaf 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -739,10 +739,7 @@ class ScrollView extends React.Component { this.props.contentOffset ? this.props.contentOffset.y : 0, ); this._scrollAnimatedValue.setOffset( - /* $FlowFixMe(>=0.98.0 site=react_native_fb) This comment suppresses an - * error found when Flow v0.98 was deployed. To see the error delete this - * comment and run Flow. */ - this.props.contentInset ? this.props.contentInset.top : 0, + this.props.contentInset ? this.props.contentInset.top || 0 : 0, ); this._stickyHeaderRefs = new Map(); this._headerLayoutYs = new Map();