Skip to content

Commit 2447d20

Browse files
committed
[Dashboard] Fix contract source code page
1 parent 68ce724 commit 2447d20

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/code

1 file changed

+1
-1
lines changed

apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/code/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default async function Page(props: {
2828
);
2929
}
3030

31-
const abi = await resolveContractAbi(contract).then(() => undefined);
31+
const abi = await resolveContractAbi(contract).catch(() => undefined);
3232

3333
return (
3434
<ContractCodePage

0 commit comments

Comments
 (0)