Skip to content

Commit eb1a069

Browse files
committed
update copy
1 parent a933a09 commit eb1a069

File tree

1 file changed

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

1 file changed

+12
-1
lines changed

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { fetchPublishedContractsFromDeploy } from "components/contract-components/fetchPublishedContractsFromDeploy";
2+
import Link from "next/link";
23
import { notFound } from "next/navigation";
34
import {
45
eth_getTransactionByHash,
@@ -239,7 +240,17 @@ export default async function Page(props: {
239240
}
240241

241242
if (!isDirectDeploy && !initializeData) {
242-
return <div>Multi chain deployments not available</div>;
243+
return (
244+
<div>
245+
Multi-chain deployments are not available for this contract. Deploy a
246+
new contract to enable this functionality.
247+
<br />
248+
<br />
249+
<Link href="/explore" target="_blank">
250+
Explore contracts
251+
</Link>
252+
</div>
253+
);
243254
}
244255

245256
return (

0 commit comments

Comments
 (0)