diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js
index 6e9e40d60..a2be38422 100644
--- a/Libraries/Components/ScrollView/ScrollView.js
+++ b/Libraries/Components/ScrollView/ScrollView.js
@@ -1041,7 +1041,7 @@ const ScrollView = createReactClass({
return (
// $FlowFixMe Invalid prop usage
- {Platform.isTVOS ? null : refreshControl}
+ {Platform.isTV ? null : refreshControl}
{contentContainer}
);
diff --git a/Libraries/Components/Touchable/TouchableHighlight.js b/Libraries/Components/Touchable/TouchableHighlight.js
index 117884faf..5a681c099 100644
--- a/Libraries/Components/Touchable/TouchableHighlight.js
+++ b/Libraries/Components/Touchable/TouchableHighlight.js
@@ -269,7 +269,7 @@ const TouchableHighlight = ((createReactClass({
touchableHandlePress: function(e: PressEvent) {
clearTimeout(this._hideTimeout);
- if (!Platform.isTVOS) {
+ if (!Platform.isTV) {
this._showUnderlay();
this._hideTimeout = setTimeout(
this._hideUnderlay,
diff --git a/Libraries/Components/View/ViewPropTypes.js b/Libraries/Components/View/ViewPropTypes.js
index addbc6e7e..0f7dea210 100644
--- a/Libraries/Components/View/ViewPropTypes.js
+++ b/Libraries/Components/View/ViewPropTypes.js
@@ -72,7 +72,7 @@ export type ViewProps = $ReadOnly<{|
...GestureResponderEventProps,
...TouchEventProps,
- // There's no easy way to create a different type if (Platform.isTVOS):
+ // There's no easy way to create a different type if (Platform.isTV):
// so we must include TVViewProps
...TVViewProps,
diff --git a/Libraries/Modal/Modal.js b/Libraries/Modal/Modal.js
index fcc3900da..1af6fec61 100644
--- a/Libraries/Modal/Modal.js
+++ b/Libraries/Modal/Modal.js
@@ -90,7 +90,7 @@ class Modal extends React.Component