Skip to content

Commit

Permalink
fix: update walletbalance labels
Browse files Browse the repository at this point in the history
  • Loading branch information
L03TJ3 committed Mar 26, 2024
1 parent 9b6d392 commit 696c097
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/dashboard/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const balanceStyles = {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
width: 35,
width: 55,
},
}

Expand Down Expand Up @@ -211,14 +211,14 @@ const BalanceAndSwitch = ({
<Section style={[balanceStyles.multiBalanceItem, { opacity: isCurrent ? 1 : 0.5 }]}>
<TouchableOpacity onPress={isCurrent ? noop : toggle} style={balanceStyles.switchButton}>
<Text fontSize={16} fontWeight="bold" fontFamily={theme.fonts.slab}>
{formattedBalance} G$
{formattedBalance}
</Text>
<View style={balanceStyles.networkName}>
<View style={[balanceStyles.activeIcon, { display: !networkName || isCurrent ? 'flex' : 'none' }]}>
<GreenCircle />
</View>
<Text fontSize={12} color={theme.colors.darkGray} fontWeight="normal" fontFamily={theme.fonts.slab}>
{networkName}
G$ {networkName}
</Text>
</View>
</TouchableOpacity>
Expand Down

0 comments on commit 696c097

Please sign in to comment.