diff --git a/packages/react-native/Libraries/Lists/SectionList.js b/packages/react-native/Libraries/Lists/SectionList.js index 7461f1e1b3c..77b9566ec50 100644 --- a/packages/react-native/Libraries/Lists/SectionList.js +++ b/packages/react-native/Libraries/Lists/SectionList.js @@ -261,9 +261,7 @@ export default class SectionList< } _wrapperListRef: ?React.ElementRef; - /* $FlowFixMe[missing-local-annot] The type annotation(s) required by Flow's - * LTI update could not be added via codemod */ - _captureRef = ref => { + _captureRef = (ref: ?React.RefOf) => { this._wrapperListRef = ref; }; }