We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6659de8 commit 54940e4Copy full SHA for 54940e4
Libraries/StyleSheet/PlatformColorValueTypes.macos.js
@@ -97,12 +97,12 @@ export const normalizeColorObject = (
97
'colorWithSystemEffect' in color &&
98
color.colorWithSystemEffect != null
99
) {
100
- const processColor = require('./processColor').default;
+ const normalizeColor = require('./normalizeColor');
101
const colorWithSystemEffect = color.colorWithSystemEffect;
102
const colorObject: NativeColorValue = {
103
colorWithSystemEffect: {
104
// $FlowFixMe[incompatible-use]
105
- baseColor: processColor(colorWithSystemEffect.baseColor),
+ baseColor: normalizeColor(colorWithSystemEffect.baseColor),
106
107
systemEffect: colorWithSystemEffect.systemEffect,
108
},
0 commit comments