Skip to content

Commit 5da4d21

Browse files
committed
fix
1 parent 3e3ddce commit 5da4d21

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,10 @@ export const CustomContractForm: React.FC<CustomContractFormProps> = ({
427427
}
428428
}
429429

430-
if (metadata.name === "MarketplaceV3" && !isZkSyncChain(walletChain)) {
430+
if (
431+
metadata.name === "MarketplaceV3" &&
432+
!(await isZkSyncChain(walletChain))
433+
) {
431434
// special case for marketplace
432435
return await deployMarketplaceContract({
433436
account: activeAccount,

0 commit comments

Comments
 (0)