fix: current service (#205)

This commit is contained in:
BiggerRain
2025-02-26 10:20:53 +08:00
committed by GitHub
parent 4ab15eae33
commit 7734954edf
9 changed files with 47 additions and 84 deletions

View File

@@ -2,14 +2,13 @@ import { useEffect, useRef, useState } from "react";
import { invoke, isTauri } from "@tauri-apps/api/core";
import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow";
import { LogicalSize } from "@tauri-apps/api/dpi";
import clsx from "clsx";
import InputBox from "@/components/Search/InputBox";
import Search from "@/components/Search/Search";
import ChatAI, { ChatAIRef } from "@/components/Assistant/Chat";
import { useAppStore } from "@/stores/appStore";
import { useAuthStore } from "@/stores/authStore";
import ApiDetails from "@/components/Common/ApiDetails";
import clsx from "clsx";
import { isWin } from "@/utils/platform";
export default function DesktopApp() {
@@ -161,8 +160,6 @@ export default function DesktopApp() {
/>
) : null}
</div>
<ApiDetails />
</div>
);
}