We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b915a commit 260fd64Copy full SHA for 260fd64
1 file changed
centrifuge-app/src/components/LoanList.tsx
@@ -262,7 +262,7 @@ export function LoanList({ loans }: Props) {
262
}, [rows, pool])
263
264
const csvUrl = React.useMemo(() => csvData && getCSVDownloadUrl(csvData as any), [csvData])
265
- const filteredData = showRepaid ? rows : rows.filter((row) => !row.marketValue?.isZero())
+ const filteredData = showRepaid ? rows : rows.filter((row) => !row.marketValue?.isZero() && row.status !== 'Closed')
266
const pagination = usePagination({ data: filteredData, pageSize: 20 })
267
268
return (
0 commit comments