Skip to content

Commit

Permalink
Fix historical project split payouts 2 (#4362)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyd-eth authored Jun 11, 2024
1 parent 26752a8 commit 0bb6cf5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { BigNumber } from '@ethersproject/bignumber'
import EthereumAddress from 'components/EthereumAddress'
import V2V3ProjectHandleLink from 'components/v2v3/shared/V2V3ProjectHandleLink'
import { ETH_PAYOUT_SPLIT_GROUP } from 'constants/splits'
Expand Down Expand Up @@ -51,7 +52,7 @@ export const HistoricalPayoutsData: React.FC<
<V2V3ProjectHandleLink
className="truncate"
containerClassName="truncate"
projectId={parseFloat(split.projectId ?? '')}
projectId={BigNumber.from(split.projectId).toNumber()}
/>
) : (
<EthereumAddress address={split.beneficiary} />
Expand Down

0 comments on commit 0bb6cf5

Please sign in to comment.