From 7d2cc4a3bf3d86b5472ee4ba8fed9df88ce476c6 Mon Sep 17 00:00:00 2001 From: Joe Reyna Date: Wed, 11 Mar 2026 07:37:24 -0700 Subject: [PATCH] fix(ui): import MCPEvent type into local scope in chat/types.ts (#23330) --- ui/litellm-dashboard/src/components/chat/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/chat/types.ts b/ui/litellm-dashboard/src/components/chat/types.ts index 4c0da7a095..9b657306db 100644 --- a/ui/litellm-dashboard/src/components/chat/types.ts +++ b/ui/litellm-dashboard/src/components/chat/types.ts @@ -1,4 +1,5 @@ -export type { MCPEvent } from "../mcp_tools/types"; +import type { MCPEvent } from "../mcp_tools/types"; +export type { MCPEvent }; export interface ChatMessage { id: string;