Skip to content

Commit

Permalink
fix: remove decimals in holders section on treasury page
Browse files Browse the repository at this point in the history
  • Loading branch information
LordCheta committed Oct 29, 2024
1 parent aceddc7 commit c39d2d0
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: `${Math.ceil(Number(value))} stRIF`,
}))

return (
Expand Down

0 comments on commit c39d2d0

Please sign in to comment.