Skip to content

Commit 94ed78b

Browse files
authored
Merge branch 'dev' into feat/leaderboard-offset
2 parents 1043b4d + 89766af commit 94ed78b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

web/src/pages/Cases/CaseDetails/MaintenanceButtons/WithdrawAppealFees.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,10 @@ const WithdrawAppealFees: React.FC<IWithdrawAppealFees> = ({ id, roundIndex, set
6666
const argsArr: TransactionBatcherConfig = [];
6767

6868
for (const contribution of filteredContributions) {
69-
for (let round = roundIndex; round >= 0; round--) {
70-
argsArr.push({
71-
...baseArgs,
72-
args: [BigInt(id), contribution.contributor.id, BigInt(round), contribution.choice],
73-
});
74-
}
69+
argsArr.push({
70+
...baseArgs,
71+
args: [BigInt(id), contribution.contributor.id, contribution.choice],
72+
});
7573
}
7674

7775
setContractConfigs(argsArr);

0 commit comments

Comments
 (0)