From cd6afcdd98906b53620c7a3450809a78a1bd1783 Mon Sep 17 00:00:00 2001 From: Li Xin Date: Thu, 24 Apr 2025 17:17:27 +0800 Subject: [PATCH] fix: fix import order --- web/src/core/store/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/core/store/store.ts b/web/src/core/store/store.ts index deb80ca..fc314f8 100644 --- a/web/src/core/store/store.ts +++ b/web/src/core/store/store.ts @@ -5,12 +5,12 @@ import { nanoid } from "nanoid"; import { create } from "zustand"; import { chatStream, generatePodcast } from "../api"; +import type { MCPServerMetadata, SimpleMCPServerMetadata } from "../mcp"; import type { Message } from "../messages"; import { mergeMessage } from "../messages"; import { parseJSON } from "../utils"; import { useSettingsStore } from "./settings-store"; -import type { MCPServerMetadata, SimpleMCPServerMetadata } from "../mcp"; const THREAD_ID = nanoid();