diff --git a/src/components/activityEventElems/v2v3/DistributeReservedTokensElem.tsx b/src/components/activityEventElems/v2v3/DistributeReservedTokensElem.tsx index 7f43215d38..7155127bfe 100644 --- a/src/components/activityEventElems/v2v3/DistributeReservedTokensElem.tsx +++ b/src/components/activityEventElems/v2v3/DistributeReservedTokensElem.tsx @@ -1,6 +1,7 @@ import { Trans } from '@lingui/macro' import EthereumAddress from 'components/EthereumAddress' import { JuiceboxAccountLink } from 'components/JuiceboxAccountLink' +import V2V3ProjectHandleLink from 'components/v2v3/shared/V2V3ProjectHandleLink' import { PV_V2 } from 'constants/pv' import { V1ProjectContext } from 'contexts/v1/Project/V1ProjectContext' import { @@ -62,10 +63,14 @@ export default function DistributeReservedTokensEventElem({ {data?.distributeToReservedTokenSplitEvents.map(e => (
- + {e.splitProjectId ? ( + + ) : ( + + )}
diff --git a/src/graphql/distributeToReservedTokenSplitEvents/splitDistributionsForDistributeReservedTokensEvent.graphql b/src/graphql/distributeToReservedTokenSplitEvents/splitDistributionsForDistributeReservedTokensEvent.graphql index 255eb6ac4a..423bfc2054 100644 --- a/src/graphql/distributeToReservedTokenSplitEvents/splitDistributionsForDistributeReservedTokensEvent.graphql +++ b/src/graphql/distributeToReservedTokenSplitEvents/splitDistributionsForDistributeReservedTokensEvent.graphql @@ -12,5 +12,6 @@ query SplitDistributionsForDistributeReservedTokensEvent( beneficiary tokenCount projectId + splitProjectId } }