[Risky Update Two]
This commit is contained in:
@@ -254,7 +254,7 @@ const ProfileView = () => {
|
||||
display={"flex"}
|
||||
>
|
||||
<Text fontWeight={500} as={"span"}>
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InUSD).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InUSD || 0).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}
|
||||
</Text>
|
||||
<Badge display={"flex"} alignItems={"center"}>
|
||||
{InvestorWallet?.currencyCode_USD}
|
||||
@@ -274,7 +274,7 @@ const ProfileView = () => {
|
||||
display={"flex"}
|
||||
>
|
||||
<Text fontWeight={500} as={"span"}>
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InInvCur).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InInvCur || 0).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}
|
||||
</Text>
|
||||
<Badge display={"flex"} alignItems={"center"}>
|
||||
{InvestorWallet?.currencyCode_InCur}
|
||||
|
||||
@@ -213,7 +213,7 @@ const Transaction = () => {
|
||||
InvestorWallet?.currencyCode_InCur&&<Box w={100} display={"flex"} justifyContent={"end"}>
|
||||
<Text as={"span"} textAlign={"left"} w={"100%"} color={"teal.900"}>
|
||||
<Badge ms={1} colorScheme="green" me={1}>$</Badge>
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InInvCur).toLocaleString(
|
||||
{parseFloat(InvestorWallet?.WalletBalance_InInvCur||0).toLocaleString(
|
||||
undefined,
|
||||
{ minimumFractionDigits: 2, maximumFractionDigits: 2 }
|
||||
)}
|
||||
@@ -230,6 +230,7 @@ const Transaction = () => {
|
||||
"Payment Method": null,
|
||||
};
|
||||
|
||||
|
||||
extractedArray?.push(totalRow);
|
||||
|
||||
const handleDelete = () => {
|
||||
|
||||
Reference in New Issue
Block a user