Skip to content

Commit

Permalink
Change market price decimal from 2 to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Nov 15, 2024
1 parent af8f470 commit 5b8cc59
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 @@ -193,7 +193,7 @@ export function LoanList({ loans, snapshots }: Props) {
{
align: 'left',
header: <SortableTableHeader label="Market price" />,
cell: (l: Row) => formatBalance(l.marketPrice ?? 0, pool.currency, 2, 0),
cell: (l: Row) => formatBalance(l.marketPrice ?? 0, pool.currency, 4, 0),
sortKey: 'marketPrice',
},
]),
Expand Down

0 comments on commit 5b8cc59

Please sign in to comment.