Skip to content

Commit

Permalink
fix(wallet): Backup Wallet Progress Indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglashdaniel committed Dec 10, 2024
1 parent a08c449 commit 7520a94
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 7520a94

Please sign in to comment.