diff --git a/pages/dao/[symbol]/token-stats/index.tsx b/pages/dao/[symbol]/token-stats/index.tsx
index 990cc5c662..7d3a281042 100644
--- a/pages/dao/[symbol]/token-stats/index.tsx
+++ b/pages/dao/[symbol]/token-stats/index.tsx
@@ -46,7 +46,7 @@ import useLegacyConnectionContext from '@hooks/useLegacyConnectionContext'
import { useRealmProposalsQuery } from '@hooks/queries/proposal'
import { useQuery } from '@tanstack/react-query'
import { IDL } from 'VoteStakeRegistry/sdk/voter_stake_registry'
-import {ProfileImage, ProfileName} from "@components/Profile";
+import { ProfileImage, ProfileName } from '@components/Profile'
const VestingVsTime = dynamic(
() => import('VoteStakeRegistry/components/LockTokenStats/VestingVsTime'),
@@ -445,7 +445,11 @@ const LockTokenStats = () => {
)
}
const renderAddressImage = (wallet) => (
-
+
)
return (
@@ -539,7 +543,7 @@ const LockTokenStats = () => {
.reduce((acc, curr) => {
return acc.add(curr.vestingAmount)
}, new BN(0))
- .toNumber(),
+ .toString(),
}
}),
]}