Skip to content

Commit

Permalink
fix: fix step circle icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuhanming committed Jun 2, 2024
1 parent 6e6e32a commit 764442a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/steps/StepCircle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,7 @@ const RawStepCircle = (props: Props): ReactElement<Props, typeof Circle> => {
return <Icon as={HiX} boxSize={5} color="fg.inverted" />;
case 'NONE':
default:
return (
<Circle
bg={isDisabled ? 'border.default' : 'accent.default'}
size={3}
/>
);
return <Circle bg={isDisabled ? 'inherit' : 'accent'} size={3} />;
}
};

Expand Down

0 comments on commit 764442a

Please sign in to comment.