Skip to content

Commit 260fd64

Browse files
committed
fix asset table
1 parent f3b915a commit 260fd64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

centrifuge-app/src/components/LoanList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ export function LoanList({ loans }: Props) {
262262
}, [rows, pool])
263263

264264
const csvUrl = React.useMemo(() => csvData && getCSVDownloadUrl(csvData as any), [csvData])
265-
const filteredData = showRepaid ? rows : rows.filter((row) => !row.marketValue?.isZero())
265+
const filteredData = showRepaid ? rows : rows.filter((row) => !row.marketValue?.isZero() && row.status !== 'Closed')
266266
const pagination = usePagination({ data: filteredData, pageSize: 20 })
267267

268268
return (

0 commit comments

Comments
 (0)