From 3d8170fe6b50fa4c8f2dc874950bb944c5189634 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Fri, 31 Jul 2026 19:31:48 +0200 Subject: [PATCH] style(client): align tool call import order --- client/src/components/Chat/Messages/Content/ToolCall.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Chat/Messages/Content/ToolCall.tsx b/client/src/components/Chat/Messages/Content/ToolCall.tsx index 26435bb652..27ea70c2fe 100644 --- a/client/src/components/Chat/Messages/Content/ToolCall.tsx +++ b/client/src/components/Chat/Messages/Content/ToolCall.tsx @@ -11,9 +11,9 @@ import { import type { TAttachment, PartMetadata } from 'librechat-data-provider'; import { useLocalize, useProgress, useExpandCollapse, useLazyCollapseBody } from '~/hooks'; import { ToolIcon, getToolIconType, isError } from './ToolOutput'; +import { useMCPIconMap, useMCPServerNames } from '~/hooks/MCP'; import { cn, getToolDisplayLabel, logger } from '~/utils'; import { toolPanelSpacingClassName } from './disclosure'; -import { useMCPIconMap, useMCPServerNames } from '~/hooks/MCP'; import { resolveToolCallPhase } from '~/utils/toolCallPhase'; import { useToolCallIntent } from './Parts/intent'; import { AttachmentGroup } from './Parts';