From 1fbd65d58b53c7c7632589b15d0e93c694950ca2 Mon Sep 17 00:00:00 2001 From: Francis Rodriguez Date: Tue, 29 Oct 2024 11:20:52 -0400 Subject: [PATCH] DAO-XXX Remove decimals from holders token table --- src/app/treasury/HoldersSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/treasury/HoldersSection.tsx b/src/app/treasury/HoldersSection.tsx index e917b127..a1b04ca9 100644 --- a/src/app/treasury/HoldersSection.tsx +++ b/src/app/treasury/HoldersSection.tsx @@ -34,7 +34,7 @@ export const HoldersSection = () => { const holders = currentResults.map(({ address, value }) => ({ holder: , - quantity: `${formatBalanceToHuman(value)} stRIF`, + quantity: `${formatBalanceToHuman(value).split('.')[0]} stRIF`, })) return (