Skip to content

Commit 0a59293

Browse files
fix: chainId is NaN (#3557)
fixes #3555
1 parent 89239c4 commit 0a59293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/round-manager/src/features/round/ViewApplicationPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ export default function ViewApplicationPage() {
346346
const encryptedString: Blob = await response.blob();
347347

348348
const lit = new Lit({
349-
chainId: Number(chainId!),
349+
chainId: Number(roundChainId!),
350350
contract: roundId.startsWith("0x")
351351
? roundId
352352
: round?.payoutStrategy.id ?? "",

0 commit comments

Comments
 (0)