Skip to content

Commit 64c18c9

Browse files
committed
LoadingButton: fix poor contrast on loading install button
1 parent adbd4e2 commit 64c18c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin-catalog/src/components/plugins/LoadingButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const LoadingButton = (props: LoadingButtonProps) => {
2525
textTransform: 'none',
2626
}}
2727
>
28-
<CircularProgress color="secondary" value={props.progress} size={20} />
28+
<CircularProgress color="primary" value={props.progress} size={20} />
2929
</Button>
3030
);
3131
if (props.progress > 0 && props.progress < 100) {

0 commit comments

Comments
 (0)