From 54b23ec63836d61445d7adcdececf3d7365967d6 Mon Sep 17 00:00:00 2001 From: joeperpetua Date: Sun, 27 Oct 2024 23:27:55 +0100 Subject: [PATCH] refactor: revert changes to appIcon.tsx and imports --- components/{UI => discover}/appIcon.tsx | 0 components/discover/claimModal.tsx | 2 +- components/discover/defiTable.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename components/{UI => discover}/appIcon.tsx (100%) diff --git a/components/UI/appIcon.tsx b/components/discover/appIcon.tsx similarity index 100% rename from components/UI/appIcon.tsx rename to components/discover/appIcon.tsx diff --git a/components/discover/claimModal.tsx b/components/discover/claimModal.tsx index 869114c9..e8989d5a 100644 --- a/components/discover/claimModal.tsx +++ b/components/discover/claimModal.tsx @@ -6,7 +6,7 @@ import Typography from "@components/UI/typography/typography"; import Button from "@components/UI/button"; import { CDNImg } from "@components/cdn/image"; import { TEXT_TYPE } from "@constants/typography"; -import AppIcon from "../UI/appIcon"; +import AppIcon from "./appIcon"; import TokenIcon from "./tokenIcon"; import { useNotification } from "@context/NotificationProvider"; import Loading from "@app/loading"; diff --git a/components/discover/defiTable.tsx b/components/discover/defiTable.tsx index 6283f01f..1cf801ec 100644 --- a/components/discover/defiTable.tsx +++ b/components/discover/defiTable.tsx @@ -28,7 +28,7 @@ import { STABLES, TOKEN_OPTIONS, } from "@constants/defi"; -import AppIcon from "../UI/appIcon"; +import AppIcon from "./appIcon"; import ActionText from "./actionText"; import DownIcon from "@components/UI/iconsComponents/icons/downIcon"; import UpIcon from "@components/UI/iconsComponents/icons/upIcon";