From 54bb5113cf6dcf24a19a02010e8dc0a3b55027f9 Mon Sep 17 00:00:00 2001 From: Ape Fede <75544302+ape-fede@users.noreply.github.com> Date: Fri, 24 Feb 2023 16:35:24 -0300 Subject: [PATCH] chore: Fixed lint error --- src/widgets/WalletModal/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/WalletModal/types.ts b/src/widgets/WalletModal/types.ts index 8086e0c7..ddeadcc5 100644 --- a/src/widgets/WalletModal/types.ts +++ b/src/widgets/WalletModal/types.ts @@ -1,5 +1,5 @@ import { FC } from "react"; -import { LegacySvgProps } from "../../components/Svg/types"; +import { SvgProps } from "../../components/Svg/types"; export enum ConnectorNames { Injected = "injected", @@ -14,6 +14,6 @@ export type Login = (connectorId: ConnectorNames) => void; export interface Config { title: string; - icon: FC; + icon: FC; connectorId: ConnectorNames; }