From c1a836b3c4bee7f4b520381477bab662effa55ce Mon Sep 17 00:00:00 2001 From: Ashutosh Kumar Date: Tue, 5 Nov 2024 01:50:31 +0530 Subject: [PATCH] Fix for DAO Route after merge --- src/modules/creator/token/etherlink/steps/Ownership.tsx | 2 +- src/modules/creator/token/router.tsx | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/modules/creator/token/etherlink/steps/Ownership.tsx b/src/modules/creator/token/etherlink/steps/Ownership.tsx index eb09f319..53d46855 100644 --- a/src/modules/creator/token/etherlink/steps/Ownership.tsx +++ b/src/modules/creator/token/etherlink/steps/Ownership.tsx @@ -35,7 +35,7 @@ export const Ownership: React.FC = () => { - This would be an FA2-compatible token contract that will serve to assign voting weight based on + This would be an ERC20-compatible token contract that will serve to assign voting weight based on ownership. diff --git a/src/modules/creator/token/router.tsx b/src/modules/creator/token/router.tsx index dd0e299d..1b950b26 100644 --- a/src/modules/creator/token/router.tsx +++ b/src/modules/creator/token/router.tsx @@ -9,6 +9,7 @@ import { Success as TezosSuccess } from "./tezos/steps/Success" import { Success as EtherlinkSuccess } from "./etherlink/steps/Success" import { EtherlinkTokenDeployment } from "./etherlink" import { useTezos } from "services/beacon/hooks/useTezos" +import { Ownership as EtherlinkOwnership } from "./etherlink/steps/Ownership" import { DeploymentProvider as EtherlinkDeploymentProvider } from "./etherlink/state/context" import { DeploymentProvider as TezosDeploymentProvider } from "./tezos/state/context" @@ -24,9 +25,13 @@ export const TokenDeploymentRouter = (): JSX.Element => { + + + + )