Skip to content

Commit b3a6303

Browse files
committed
fix loader color when viewing in image viewer
1 parent aa74cbe commit b3a6303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const Loader = ({ theme, absolutePosition, style, color }) =>
2626
style,
2727
]}
2828
>
29-
<Spinner type="ThreeBounce" color={theme.colors.text || color} />
29+
<Spinner type="ThreeBounce" color={color || theme.colors.text} />
3030
</View>;
3131

3232
export default withTheme(Loader);

0 commit comments

Comments
 (0)