diff --git a/pages/multi/[address]/index.tsx b/pages/multi/[address]/index.tsx index 6fb70a9..fe3d233 100644 --- a/pages/multi/[address]/index.tsx +++ b/pages/multi/[address]/index.tsx @@ -111,35 +111,35 @@ const Multipage = () => { )} - {txView === "send" && ( + {txView === "send" && accountOnChain && ( )} - {txView === "delegate" && ( + {txView === "delegate" && accountOnChain && ( )} - {txView === "undelegate" && ( + {txView === "undelegate" && accountOnChain && ( )} - {txView === "redelegate" && ( + {txView === "redelegate" && accountOnChain && ( )} - {txView === "claimRewards" && ( + {txView === "claimRewards" && accountOnChain && ( { Once a transaction is created, it can be signed by the multisig members, and then broadcast.

-