Skip to content

Commit

Permalink
improve: add to disconnected state
Browse files Browse the repository at this point in the history
  • Loading branch information
james-a-morris committed Nov 17, 2023
1 parent 533d784 commit d264e99
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ const ACXReferralTierStepper = () => {
: "empty"
}
/>
<Text size="lg" color={index < tier ? "white" : "grey-400"}>
<Text
size="lg"
color={isConnected && index < tier ? "white" : "grey-400"}
>
{index + 1}
</Text>
</NumberedStepItem>
Expand Down

0 comments on commit d264e99

Please sign in to comment.