updated final

This commit is contained in:
2024-08-16 18:29:33 +05:30
parent a0b722bd12
commit fc7d8ac0e9
3 changed files with 5 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ const IOCashDetails = () => {
fontWeight={"500"}
className="d-flex align-items-center web-text-small"
>
{item.transactionAmount}
{`$${parseFloat(item.transactionAmount||0).toLocaleString()}`}
</Text>
),
"Comments": (

View File

@@ -78,7 +78,9 @@ const IONAVDetails = () => {
fontWeight={"500"}
className="d-flex align-items-center web-text-small"
>
{`${item.transactionAmount}`}
{/* {`${item.transactionAmount}`} */}
{`$${parseFloat(item.transactionAmount||0).toLocaleString()}`}
</Text>
),
"Last NAV update": (

View File

@@ -173,7 +173,7 @@ const Investors = ({data}) => {
className="d-flex align-items-center web-text-small"
>
{/* {`$${formatCurrency(item.InvestedAmount_USD)}`} */}
{`$${parseFloat(item.InvestedAmount_USD).toLocaleString()}`}
{`$${parseFloat(item.InvestedAmount_USD||0).toLocaleString()}`}
</Text>
),
"Percentage": (