Skip to content

Commit

Permalink
DAO-XXX Remove decimals from holders token table
Browse files Browse the repository at this point in the history
  • Loading branch information
Freshenext committed Oct 29, 2024
1 parent aceddc7 commit 1fbd65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/treasury/HoldersSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const HoldersSection = () => {

const holders = currentResults.map(({ address, value }) => ({
holder: <HolderColumn address={address.hash} rns={address.ens_domain_name} />,
quantity: `${formatBalanceToHuman(value)} stRIF`,
quantity: `${formatBalanceToHuman(value).split('.')[0]} stRIF`,
}))

return (
Expand Down

0 comments on commit 1fbd65d

Please sign in to comment.