diff --git a/ui/component/walletFiatBalance/view.jsx b/ui/component/walletFiatBalance/view.jsx index b471da0e5..986f6b239 100644 --- a/ui/component/walletFiatBalance/view.jsx +++ b/ui/component/walletFiatBalance/view.jsx @@ -28,7 +28,7 @@ const WalletBalance = (props: Props) => { return ( <>{1 == 1 && {accountDetails && accountDetails.total_received_unpaid/100} USD} + title={<>{accountDetails && accountDetails.total_received_unpaid/100} || 0 USD} subtitle={ This is your remaining balance that can still be withdrawn to your bank account @@ -37,11 +37,11 @@ const WalletBalance = (props: Props) => { actions={ <>

- ${accountDetails && accountDetails.total_tipped / 100 } Received Total + ${accountDetails && accountDetails.total_tipped / 100 || 0} Received Total

- ${accountDetails && accountDetails.total_paid_out/100 } Withdrawn + ${accountDetails && accountDetails.total_paid_out/100 || 0} Withdrawn