Skip to content

Commit

Permalink
fix: clashing key number error (#4328)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraeth-eth authored May 10, 2024
1 parent 593ad6a commit 82da2c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export const PayoutsSubPanel = ({
<ProjectAllocationSkeleton key={i} />
))
) : hasPayouts ? (
payouts?.map(payout => (
payouts?.map((payout, i) => (
<ProjectAllocationRow
key={`${payout.address}${payout.projectId}`}
key={`${payout.address}${payout.projectId}-${i}`}
{...payout}
/>
))
Expand Down

0 comments on commit 82da2c1

Please sign in to comment.