This commit is contained in:
YasinShaikh123
2024-08-23 19:44:35 +05:30
5 changed files with 8 additions and 7 deletions

View File

@@ -90,7 +90,7 @@ const DeletionHistory = () => {
className="d-flex align-items-center web-text-small"
fontWeight={'500'}
>
{formatDate(item.RequestOn)}
{formatDate(item.Requested_on)}
</Text>
),
"Client ID": (

View File

@@ -220,7 +220,7 @@ const filteredData = data?.data?.rows
</Box>
),
"Supporting's": (
<Text
item.transactionStatus === "Approved" ? <Text
w={"60px"}
justifyContent={slideFromRight ? "right" : "left"}
as={"span"}
@@ -254,7 +254,7 @@ const filteredData = data?.data?.rows
<Box as="span">View</Box> <ExternalLinkIcon />
</Link> */}
</Badge>
</Text>
</Text>:""
),
}))

View File

@@ -228,6 +228,7 @@ const DistributionInvestor = ({ isOpen, onClose, exit }) => {
whiteSpace="normal"
wordBreak="normal"
overflowWrap="normal"
opacity={0}
>
{calcualtedData?.distributed_per?.toFixed(2)}%
</Th>
@@ -383,7 +384,7 @@ const DistributionInvestor = ({ isOpen, onClose, exit }) => {
emptyMessage={`We don't have any Sponers `}
tableHeadRow={tableHeadRow}
data={extractedArray}
total={<Total />}
// total={<Total />}
// isLoading={isLoading}
/> : <Alert status='info' fontSize={'sm'} rounded={'sm'}>
<AlertIcon />

View File

@@ -125,7 +125,7 @@ const ViewIOdetails = () => {
country: country?.countryName,
value: removeTrailingZeros(minInvestmentAmt),
logo: country?.flagIcon,
curr: currencyCode,
curr: country?.countryCode,
}
})

View File

@@ -139,7 +139,7 @@ console.log(viewInvestor);
"Percentage": (
<Box w={"auto"} isTruncated={true}>
<Text as={"span"} color={"teal.900"}>
{item?.MarketValue_Per} %
{item?.Investor_Holidings} %
</Text>
</Box>
),
@@ -156,7 +156,7 @@ console.log(viewInvestor);
"Return on Investment": (
<Box w={"auto"} isTruncated={true}>
<Text as={"span"} color={"teal.900"}>
{item.TotalReturn} %
{item.MarketValue_Per} %
</Text>
</Box>
),