Skip to content

Commit

Permalink
Fix total assets
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Nov 12, 2024
1 parent d24e174 commit 21da51d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/LoanList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export function LoanList({ loans }: Props) {
return (
<>
<Box pt={1} pb={2} paddingX={1} display="flex" justifyContent="space-between" alignItems="center">
<Text variant="heading4">{filters.data.map((loan) => loan.status === 'Active').length} ongoing assets</Text>
<Text variant="heading4">{rows.filter((row) => !row.marketValue?.isZero()).length} ongoing assets</Text>
<Box display="flex">
<Button
variant="inverted"
Expand Down

0 comments on commit 21da51d

Please sign in to comment.