diff --git a/apps/client/src/widgets/type_widgets/llm_chat/ChatMessage.tsx b/apps/client/src/widgets/type_widgets/llm_chat/ChatMessage.tsx index 114198e9a3..bc729af405 100644 --- a/apps/client/src/widgets/type_widgets/llm_chat/ChatMessage.tsx +++ b/apps/client/src/widgets/type_widgets/llm_chat/ChatMessage.tsx @@ -8,6 +8,7 @@ import type { LlmCitation } from "@triliumnext/commons"; import { t } from "../../../services/i18n.js"; import utils from "../../../services/utils.js"; import { SanitizedHtml } from "../../react/RawHtml.js"; +import { ExpandableCard, ExpandableSection } from "./ExpandableCard.js"; import { type ContentBlock, getMessageText, type StoredMessage, type TextBlock, type ToolCallBlock } from "./llm_chat_types.js"; import ToolCallCard from "./ToolCallCard.js"; @@ -59,13 +60,8 @@ function CitationsSection({ citations }: { citations: LlmCitation[] }) { const summary = t("llm_chat.sources_summary", { count: citations.length, sites: siteCount }); return ( -