Skip to content

Commit

Permalink
fix csv (#2199)
Browse files Browse the repository at this point in the history
Co-authored-by: Sophia <[email protected]>
Co-authored-by: Jeroen <[email protected]>
  • Loading branch information
3 people authored Jun 6, 2024
1 parent 49abcb5 commit 18f7c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/Report/PoolBalance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export function PoolBalance({ pool }: { pool: Pool }) {
.reverse()
.map((token) => ({
name: `\u00A0 \u00A0 ${token.currency.name.split(' ').at(-1)} tranche`,
value: poolStates?.map((state) => state.tranches[token.id]?.fulfilledRedeemOrders ?? 0) || [],
value: poolStates?.map((state) => state.tranches[token.id]?.fulfilledRedeemOrders.toFloat() ?? 0) || [],
heading: false,
})) || []
)
Expand Down

0 comments on commit 18f7c01

Please sign in to comment.