diff --git a/Libraries/Components/DatePicker/DatePickerIOS.ios.js b/Libraries/Components/DatePicker/DatePickerIOS.ios.js index 0442cf395..a93516c9a 100644 --- a/Libraries/Components/DatePicker/DatePickerIOS.ios.js +++ b/Libraries/Components/DatePicker/DatePickerIOS.ios.js @@ -117,7 +117,6 @@ class DatePickerIOS extends React.Component { mode: 'datetime', }; - // $FlowFixMe How to type a native component to be able to call setNativeProps _picker: ?React.ElementRef = null; componentDidUpdate() { diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index 9a8be2df5..bf189f0a4 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -761,7 +761,6 @@ class ScrollView extends React.Component { } _getKeyForIndex(index, childArray) { - // $FlowFixMe Invalid prop usage const child = childArray[index]; return child && child.key; } diff --git a/RNTester/js/ListViewPagingExample.js b/RNTester/js/ListViewPagingExample.js index 4aade764f..aa41c9d4e 100644 --- a/RNTester/js/ListViewPagingExample.js +++ b/RNTester/js/ListViewPagingExample.js @@ -88,7 +88,6 @@ class Thumb extends React.Component<{}, $FlowFixMeState> { } class ListViewPagingExample extends React.Component<$FlowFixMeProps, *> { - // $FlowFixMe found when converting React.createClass to ES6 constructor(props) { super(props); const getSectionData = (dataBlob, sectionID) => { diff --git a/RNTester/js/RNTesterExampleList.js b/RNTester/js/RNTesterExampleList.js index 98ebda4a4..a52875a90 100644 --- a/RNTester/js/RNTesterExampleList.js +++ b/RNTester/js/RNTesterExampleList.js @@ -20,8 +20,6 @@ const RNTesterActions = require('./RNTesterActions'); const RNTesterExampleFilter = require('./RNTesterExampleFilter'); const View = require('View'); -/* $FlowFixMe(>=0.78.0 site=react_native_android_fb) This issue was found when - * making Flow check .android.js files. */ import type {RNTesterExample} from 'RNTesterTypes'; import type {ViewStyleProp} from 'StyleSheet'; @@ -71,9 +69,6 @@ const renderSectionHeader = ({section}) => ( class RNTesterExampleList extends React.Component { render() { const filter = ({example, filterRegex}) => - /* $FlowFixMe(>=0.68.0 site=react_native_fb) This comment suppresses an - * error found when Flow v0.68 was deployed. To see the error delete this - * comment and run Flow. */ filterRegex.test(example.module.title) && (!Platform.isTV || example.supportsTVOS);