diff --git a/web/src/pages/Cases/CaseDetails/MaintenanceButtons/WithdrawAppealFees.tsx b/web/src/pages/Cases/CaseDetails/MaintenanceButtons/WithdrawAppealFees.tsx index eb598e91d..a15fc7610 100644 --- a/web/src/pages/Cases/CaseDetails/MaintenanceButtons/WithdrawAppealFees.tsx +++ b/web/src/pages/Cases/CaseDetails/MaintenanceButtons/WithdrawAppealFees.tsx @@ -66,12 +66,10 @@ const WithdrawAppealFees: React.FC = ({ id, roundIndex, set const argsArr: TransactionBatcherConfig = []; for (const contribution of filteredContributions) { - for (let round = roundIndex; round >= 0; round--) { - argsArr.push({ - ...baseArgs, - args: [BigInt(id), contribution.contributor.id, BigInt(round), contribution.choice], - }); - } + argsArr.push({ + ...baseArgs, + args: [BigInt(id), contribution.contributor.id, contribution.choice], + }); } setContractConfigs(argsArr);