From a706b6356c22f89a34afa944acb69556c45e5cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Brzezin=CC=81ski?= Date: Wed, 18 Oct 2023 17:38:05 +0200 Subject: [PATCH] chunk fix --- components/rewards/Claim.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/rewards/Claim.tsx b/components/rewards/Claim.tsx index d7225cbf..45dd056f 100644 --- a/components/rewards/Claim.tsx +++ b/components/rewards/Claim.tsx @@ -208,7 +208,7 @@ const ClaimPage = () => { claimIxes.push(...ixs) } - chunk(claimIxes, 4).map((x) => + chunk(claimIxes, 2).map((x) => transactionInstructions.push({ instructionsSet: x, sequenceType: SequenceType.Parallel,