From b3bf7e0cf90966b446dd6765d1d66a3cef581c7d Mon Sep 17 00:00:00 2001 From: Eli White Date: Thu, 27 Sep 2018 10:45:50 -0700 Subject: [PATCH] Fix react-native export for PointPropType Summary: PointPropType was split in https://github.com/facebook/react-native/commit/f3c802759535ef049cf7a425143099fe5bf27a1e but we forgot to change this reference. It was previously requiring PointPropType which now only exports a flow type. Reviewed By: RSNara Differential Revision: D10082048 fbshipit-source-id: 6dbfe434873d00d1203aaea65fb3129dee5a00c1 --- Libraries/react-native/react-native-implementation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/react-native/react-native-implementation.js b/Libraries/react-native/react-native-implementation.js index b09bcdb89..06234a0e5 100644 --- a/Libraries/react-native/react-native-implementation.js +++ b/Libraries/react-native/react-native-implementation.js @@ -307,7 +307,7 @@ const ReactNative = { return require('EdgeInsetsPropType'); }, get PointPropType() { - return require('PointPropType'); + return require('DeprecatedPointPropType'); }, get ViewPropTypes() { return require('DeprecatedViewPropTypes');