From 9f72187880c456060039602a3d2f3bc1d777a866 Mon Sep 17 00:00:00 2001 From: Harman-singh-waraich Date: Thu, 18 Dec 2025 17:47:58 +0530 Subject: [PATCH] fix(web): withdraw-appeal-fees-maintainance-button --- .../MaintenanceButtons/WithdrawAppealFees.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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);