diff --git a/packages/grant-explorer/src/checkoutStore.ts b/packages/grant-explorer/src/checkoutStore.ts index bfe6518f2b..22945db6bd 100644 --- a/packages/grant-explorer/src/checkoutStore.ts +++ b/packages/grant-explorer/src/checkoutStore.ts @@ -234,9 +234,6 @@ export const useCheckoutStore = create()( const groupedEncodedVotes: Record = {}; for (const roundId in groupedDonations) { - // get all the index/ids from groupedDonation[xx] - // refetch all the data based on chainId, index, roundId, - // encode .. const allProjectIds = groupedDonations[roundId].map( (d) => d.projectRegistryId ); @@ -258,7 +255,6 @@ export const useCheckoutStore = create()( }[] = []; groupedDonations[roundId].map((d) => { - // iterate through response, find application in response where projectRegistryId is d.projectRegistryId const app = response.find( (r) => r.projectId === d.projectRegistryId );