diff --git a/src/components/MyWallet/WalletItemCard.jsx b/src/components/MyWallet/WalletItemCard.jsx index af3a9fe..6f3af69 100644 --- a/src/components/MyWallet/WalletItemCard.jsx +++ b/src/components/MyWallet/WalletItemCard.jsx @@ -1,6 +1,6 @@ import React, { useState } from "react"; import { useDispatch, useSelector } from "react-redux"; -import background from "../../assets/images/bg-sky-blue.jpg"; //shape/balance-bg.svg"; +// import background from "../../assets/images/bg-sky-blue.jpg"; //shape/balance-bg.svg"; import localImgLoad from "../../lib/localImgLoad"; import { tableReload } from "../../store/TableReloads"; import { PriceFormatter } from "../Helpers/PriceFormatter"; @@ -44,25 +44,25 @@ export default function WalletItemCard({ walletItem, payment, countries }) { return ( <>
-
-
+
+ {/*
currency-icon -
-
-
-

+

*/} +
+
+

Current Balance

-

+

{PriceFormatter( walletItem.amount * 0.01, walletItem.code, @@ -75,9 +75,10 @@ export default function WalletItemCard({ walletItem, payment, countries }) {

{walletItem.escrow > 0 ? +

HOLDINGS :{" "} - + {PriceFormatter( walletItem.escrow * 0.01, walletItem.code, @@ -86,8 +87,9 @@ export default function WalletItemCard({ walletItem, payment, countries }) { )}

- : - null +
+ : + null }