Skip to content

Commit

Permalink
Final touches v2
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Nov 7, 2023
1 parent d4c9ad6 commit 5a73734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CurrentWalletBalance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type CurrentWalletBalanceProps = CurrentWalletBalanceOnyxProps & {

function CurrentWalletBalance({userWallet, balanceStyles}: CurrentWalletBalanceProps) {
const formattedBalance = CurrencyUtils.convertToDisplayString(userWallet?.currentBalance ?? 0);
return <Text style={[styles.pv5, styles.alignSelfCenter, styles.textHeadline, styles.textXXXLarge, balanceStyles]}>{`${formattedBalance}`}</Text>;
return <Text style={[styles.pv5, styles.alignSelfCenter, styles.textHeadline, styles.textXXXLarge, balanceStyles]}>{formattedBalance}</Text>;
}

CurrentWalletBalance.displayName = 'CurrentWalletBalance';
Expand Down

0 comments on commit 5a73734

Please sign in to comment.