Skip to content

Commit

Permalink
Merge pull request #26956 from brave/fix-wallet-backup-wallet-progres…
Browse files Browse the repository at this point in the history
…s-indicator

fix(wallet): Backup Wallet Progress Indicator
  • Loading branch information
Douglashdaniel authored Dec 12, 2024
2 parents 059a437 + 7520a94 commit 3093645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const VerificationProgress = ({ steps, currentStep }: Props) => {
<Rectangle
key={index}
isActive={currentStep >= index}
width={index === 0 ? '20px' : '16px'}
width={index === currentStep ? '24px' : '12px'}
/>
))}
</Wrapper>
Expand Down

0 comments on commit 3093645

Please sign in to comment.