From 5b8cc59b8241505ae10dc7773c3f773b9e78f063 Mon Sep 17 00:00:00 2001 From: katty barroso Date: Fri, 15 Nov 2024 15:10:22 +0100 Subject: [PATCH] Change market price decimal from 2 to 4 --- centrifuge-app/src/components/LoanList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centrifuge-app/src/components/LoanList.tsx b/centrifuge-app/src/components/LoanList.tsx index 75670e599..03b065e93 100644 --- a/centrifuge-app/src/components/LoanList.tsx +++ b/centrifuge-app/src/components/LoanList.tsx @@ -193,7 +193,7 @@ export function LoanList({ loans, snapshots }: Props) { { align: 'left', header: , - cell: (l: Row) => formatBalance(l.marketPrice ?? 0, pool.currency, 2, 0), + cell: (l: Row) => formatBalance(l.marketPrice ?? 0, pool.currency, 4, 0), sortKey: 'marketPrice', }, ]),