File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/cross-chain Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 11import { fetchPublishedContractsFromDeploy } from "components/contract-components/fetchPublishedContractsFromDeploy" ;
2+ import Link from "next/link" ;
23import { notFound } from "next/navigation" ;
34import {
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 (
You can’t perform that action at this time.
0 commit comments