diff --git a/src/app/components/Staking/Form/States/WalletNotConnected.tsx b/src/app/components/Staking/Form/States/WalletNotConnected.tsx index fd9dd9e9..282fcc52 100644 --- a/src/app/components/Staking/Form/States/WalletNotConnected.tsx +++ b/src/app/components/Staking/Form/States/WalletNotConnected.tsx @@ -1,28 +1,37 @@ +import { Button, Heading, Text } from "@babylonlabs-io/bbn-core-ui"; import Image from "next/image"; import { useBTCWallet } from "@/app/context/wallet/BTCWalletProvider"; +import { getNetworkConfig } from "@/config/network.config"; -import connectIcon from "./connect-icon.svg"; import walletIcon from "./wallet-icon.svg"; export const WalletNotConnected = () => { const { open } = useBTCWallet(); + const { coinName } = getNetworkConfig(); return (
- Please connect wallet to start staking -
+