Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit bf6565d

Browse files
committed
Don’t display total label on home screen for fiat
1 parent 2b520f5 commit bf6565d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const BalanceDisplay = ({
109109
}) => (
110110
<View style={balanceStyles.wrapper}>
111111
<Button onPress={toggleDisplayFiat}>
112-
<H4Text>Total {unitLabel}</H4Text>
112+
{unitLabel ? <H4Text>Total {unitLabel}</H4Text> : null}
113113
<BalanceLabel>
114114
<BalanceLabelNumeral>{totalBalanceLabel}</BalanceLabelNumeral>
115115
</BalanceLabel>

0 commit comments

Comments
 (0)