From 89be8a9f8b48f83428577d0865f4dcd2797067d3 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Thu, 22 Oct 2020 12:28:17 -0700 Subject: [PATCH] Fix ViewProps import path This error was not surfaced by Flow locally but surfaced in CI. --- .../react-native-web/src/modules/usePlatformMethods/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-web/src/modules/usePlatformMethods/index.js b/packages/react-native-web/src/modules/usePlatformMethods/index.js index 48ce8b8b..434d2133 100644 --- a/packages/react-native-web/src/modules/usePlatformMethods/index.js +++ b/packages/react-native-web/src/modules/usePlatformMethods/index.js @@ -8,7 +8,7 @@ */ import type { GenericStyleProp } from '../../types'; -import type { ViewProps } from '../../Exports/View'; +import type { ViewProps } from '../../exports/View'; import UIManager from '../../exports/UIManager'; import createDOMProps from '../createDOMProps';