From ed764a89d9cdc209fe3d819cb77d57eba64dbb21 Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Thu, 6 Jun 2024 19:08:01 +0200 Subject: [PATCH] fix allProjects to be an array instead of an object (#3492) --- packages/round-manager/src/features/round/ViewFundGrantees.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/round-manager/src/features/round/ViewFundGrantees.tsx b/packages/round-manager/src/features/round/ViewFundGrantees.tsx index 53263f224..2d9f6decc 100644 --- a/packages/round-manager/src/features/round/ViewFundGrantees.tsx +++ b/packages/round-manager/src/features/round/ViewFundGrantees.tsx @@ -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]} />