From bffe2cd0df6334ce0e3542e58e87b2168ce58a0b Mon Sep 17 00:00:00 2001 From: lawvs <18554747+lawvs@users.noreply.github.com> Date: Fri, 7 Nov 2025 17:39:28 +0800 Subject: [PATCH] fix(ai): lint --- .../layer/renderer/src/modules/new-user-guide/ai-chat-pane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/layer/renderer/src/modules/new-user-guide/ai-chat-pane.tsx b/apps/desktop/layer/renderer/src/modules/new-user-guide/ai-chat-pane.tsx index a6f34b67d..0025ebfba 100644 --- a/apps/desktop/layer/renderer/src/modules/new-user-guide/ai-chat-pane.tsx +++ b/apps/desktop/layer/renderer/src/modules/new-user-guide/ai-chat-pane.tsx @@ -22,7 +22,6 @@ import { useEventCallback } from "usehooks-ts" import { useDialog } from "~/components/ui/modal/stacked/hooks" import { useI18n } from "~/hooks/common" import { ChatInput } from "~/modules/ai-chat/components/layouts/ChatInput" -import { Messages } from "~/modules/ai-chat/components/layouts/ChatInterface" import { useAttachScrollBeyond } from "~/modules/ai-chat/hooks/useAttachScrollBeyond" import { useAutoScroll } from "~/modules/ai-chat/hooks/useAutoScroll" import { @@ -36,6 +35,7 @@ import { } from "~/modules/ai-chat/store/hooks" import type { AIChatContextBlock, BizUIMessage } from "~/modules/ai-chat/store/types" +import { Messages } from "../ai-chat/components/layouts/Messages" import { RateLimitNotice } from "../ai-chat/components/layouts/RateLimitNotice" import { AIChatWaitingIndicator } from "../ai-chat/components/message/AIChatMessage" import { AIShortcutButton } from "../ai-chat/components/ui/AIShortcutButton"