From 9e0b96ab36701a3e418a27118561d54482d42d44 Mon Sep 17 00:00:00 2001 From: carefree0910 Date: Sun, 14 May 2023 18:37:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8FCleaned=20up=20redundant?= =?UTF-8?q?=20imports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cfdraw/.web/src/hooks/useSetup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cfdraw/.web/src/hooks/useSetup.ts b/cfdraw/.web/src/hooks/useSetup.ts index bed12112..dafbac55 100644 --- a/cfdraw/.web/src/hooks/useSetup.ts +++ b/cfdraw/.web/src/hooks/useSetup.ts @@ -15,8 +15,8 @@ import { ABCStore, langStore } from "@carefree0910/business"; import type { IPythonOnSocketMessage, IPythonSocketRequest } from "@/schema/_python"; import { useReactPluginSettings } from "@/_settings"; -import { cleanURL, getBaseURL } from "@/utils/misc"; -import { IMAGE_PLACEHOLDER, IS_PROD } from "@/utils/constants"; +import { getBaseURL } from "@/utils/misc"; +import { IMAGE_PLACEHOLDER } from "@/utils/constants"; import { ThemeType, allThemes, themeStore } from "@/stores/theme"; import { userStore } from "@/stores/user"; import { debugStore } from "@/stores/debug";