diff --git a/dapp/src/components/Header/ConnectWallet.tsx b/dapp/src/components/Header/ConnectWallet.tsx index 380645281..bec7df49e 100644 --- a/dapp/src/components/Header/ConnectWallet.tsx +++ b/dapp/src/components/Header/ConnectWallet.tsx @@ -1,12 +1,5 @@ import React from "react" -import { - Button, - HStack, - Icon, - Text, - Tooltip, - useColorModeValue, -} from "@chakra-ui/react" +import { Button, HStack, Icon, Text, Tooltip } from "@chakra-ui/react" import { Account } from "@ledgerhq/wallet-api-client" import { Bitcoin, Ethereum, Info } from "../../static/icons" import { BITCOIN } from "../../constants" @@ -30,8 +23,9 @@ function ConnectButton({ account, requestAccount, }: ConnectButtonsProps) { - const styles = !account ? { color: "error", borderColor: "error" } : undefined - const colorRightIcon = useColorModeValue("black", "grey.80") + const styles = !account + ? { color: "red.400", borderColor: "red.400" } + : undefined return (