Skip to content

Commit

Permalink
fix allProjects to be an array instead of an object (#3492)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravityblast authored Jun 6, 2024
1 parent f0ccfc0 commit ed764a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function FinalizedRoundContent(props: {
token={props.matchingFundPayoutToken!}
price={props.price}
round={props.round}
allProjects={{ ...props.paidProjects, ...props.unpaidProjects }}
allProjects={[...props.paidProjects, ...props.unpaidProjects]}
/>
</Tab.Panel>
<Tab.Panel>
Expand Down

0 comments on commit ed764a8

Please sign in to comment.