Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Sep 16, 2023
1 parent 86f8d45 commit b33c0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Payment/SelectMint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export default function SelectMintScreen({ navigation, route }: TSelectMintPageP
<Text style={[styles.mintAmount, { color: color.TEXT, paddingBottom: 3 }]}>
{formatInt(m.amount, 'compact', 'en')}
</Text>
{m.amount > 0 && <ZapIcon color={hi[highlight]} />}
<ZapIcon color={m.amount > 0 ? hi[highlight] : color.TEXT} />
</View>
</TouchableOpacity>
{i < userMints.length - 1 && <Separator />}
Expand Down

0 comments on commit b33c0b3

Please sign in to comment.