From 21aa407a500dac2f7ee4f3630e9729a282059c39 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Wed, 9 Oct 2024 22:21:42 +0900 Subject: [PATCH] [Chore] Remove the code that is no longer in use. --- src-ui/app/App.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src-ui/app/App.jsx b/src-ui/app/App.jsx index 18b2d8ee..9533054e 100644 --- a/src-ui/app/App.jsx +++ b/src-ui/app/App.jsx @@ -1,7 +1,5 @@ -import { getCurrent } from "@tauri-apps/api/window"; import { useEffect, useRef } from "react"; import { useStartPython } from "@logics/useStartPython"; -// import { useConfig } from "@logics/useConfig"; import { WindowTitleBar } from "./window_title_bar/WindowTitleBar"; import { MainPage } from "./main_page/MainPage"; import { ConfigPage } from "./config_page/ConfigPage"; @@ -53,7 +51,6 @@ import { useSpeakerDeviceList } from "@logics_configs/useSpeakerDeviceList"; const StartPythonFacadeComponent = () => { const { asyncStartPython } = useStartPython(); const hasRunRef = useRef(false); - const main_page = getCurrent(); const { asyncFetchFonts } = useAsyncFetchFonts(); const { getMicHostList } = useMicHostList();