diff --git a/src/app/components/Staking/Form/States/WalletNotConnected.tsx b/src/app/components/Staking/Form/States/WalletNotConnected.tsx index a0de32cf..282fcc52 100644 --- a/src/app/components/Staking/Form/States/WalletNotConnected.tsx +++ b/src/app/components/Staking/Form/States/WalletNotConnected.tsx @@ -2,11 +2,13 @@ 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 walletIcon from "./wallet-icon.svg"; export const WalletNotConnected = () => { const { open } = useBTCWallet(); + const { coinName } = getNetworkConfig(); return (