File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/react-native/Libraries/StyleSheet Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ const _normalizeColorObject = (
8282 // a macOS semantic color
8383 return color ;
8484 } else if ( 'dynamic' in color && color . dynamic !== undefined ) {
85- const normalizeColor = require ( './normalizeColor' ) ;
85+ const normalizeColor = require ( './normalizeColor' ) . default ;
8686
8787 // a dynamic, appearance aware color
8888 const dynamic = color . dynamic ;
@@ -103,7 +103,7 @@ const _normalizeColorObject = (
103103 'colorWithSystemEffect' in color &&
104104 color . colorWithSystemEffect != null
105105 ) {
106- const normalizeColor = require ( './normalizeColor' ) ;
106+ const normalizeColor = require ( './normalizeColor' ) . default ;
107107 const colorWithSystemEffect = color . colorWithSystemEffect ;
108108 const colorObject : LocalNativeColorValue = {
109109 colorWithSystemEffect : {
You can’t perform that action at this time.
0 commit comments