From b88f258b9396e1cc2c1488790eebe5082ab54027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane?= Date: Tue, 24 Oct 2023 11:41:19 +0200 Subject: [PATCH] fix(linter): remove useless import --- src/components/Popular.tsx | 2 +- src/components/Trending.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Popular.tsx b/src/components/Popular.tsx index 67cce47..7257560 100644 --- a/src/components/Popular.tsx +++ b/src/components/Popular.tsx @@ -1,4 +1,4 @@ -import { Alert, LoadingOverlay, Text } from "@mantine/core"; +import { Alert, Text } from "@mantine/core"; import { memo } from "react"; import { useTranslation } from "react-i18next"; import { useQuery } from "react-query"; diff --git a/src/components/Trending.tsx b/src/components/Trending.tsx index d840eb7..44d68db 100644 --- a/src/components/Trending.tsx +++ b/src/components/Trending.tsx @@ -1,4 +1,4 @@ -import { Alert, LoadingOverlay, Text } from "@mantine/core"; +import { Alert, Text } from "@mantine/core"; import { memo } from "react"; import { useTranslation } from "react-i18next"; import { useQuery } from "react-query";