From 60b474dbd1140f97c06211e9e61c9ccd82556a1d Mon Sep 17 00:00:00 2001 From: Rafal Czajkowski Date: Mon, 21 Oct 2024 16:01:13 +0200 Subject: [PATCH] Remove unnecessary import --- dapp/src/components/ConnectWalletModal/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/dapp/src/components/ConnectWalletModal/index.tsx b/dapp/src/components/ConnectWalletModal/index.tsx index b255f46cb..a076f11d5 100644 --- a/dapp/src/components/ConnectWalletModal/index.tsx +++ b/dapp/src/components/ConnectWalletModal/index.tsx @@ -2,7 +2,6 @@ import React, { useEffect, useState } from "react" import { ModalBody, ModalHeader, ModalCloseButton } from "@chakra-ui/react" import { useConnectors, useIsEmbed, useWalletConnectionError } from "#/hooks" import { OrangeKitConnector, BaseModalProps, OnSuccessCallback } from "#/types" -// import { wallets } from "#/constants" import withBaseModal from "../ModalRoot/withBaseModal" import ConnectWalletButton from "./ConnectWalletButton" import ConnectWalletErrorAlert from "./ConnectWalletErrorAlert"