Skip to content

Commit 2a377b9

Browse files
authored
Remove default color value for mac ActivityIndicator so that it uses (microsoft#23)
the default system color instead.
1 parent a18e6d4 commit 2a377b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/Components/ActivityIndicator/ActivityIndicator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const ActivityIndicatorWithRef = React.forwardRef(ActivityIndicator);
116116

117117
ActivityIndicatorWithRef.defaultProps = {
118118
animating: true,
119-
color: Platform.OS === 'ios' || Platform.OS === 'macos' ? GRAY : null, // TODO(macOS ISS#2323203)
119+
color: Platform.OS === 'ios' ? GRAY : null,
120120
hidesWhenStopped: true,
121121
size: 'small',
122122
};

0 commit comments

Comments
 (0)