From d14bf723398db27afce76ac353ee6f3def50ce3a Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 5 Mar 2026 18:16:01 -0800 Subject: [PATCH] fix(chat): fix clipboard catch, remove unused bottomRef, fix redact array recursion, fix inline code detection --- ui/litellm-dashboard/src/components/chat/ChatMessages.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/chat/ChatMessages.tsx b/ui/litellm-dashboard/src/components/chat/ChatMessages.tsx index 640a8addef0..10bf6b61927 100644 --- a/ui/litellm-dashboard/src/components/chat/ChatMessages.tsx +++ b/ui/litellm-dashboard/src/components/chat/ChatMessages.tsx @@ -333,7 +333,7 @@ function CopyButton({ text }: { text: string }) { setCopied(true); setTimeout(() => setCopied(false), 2000); }).catch(() => { - message.error("Failed to copy to clipboard"); + // clipboard not available (non-HTTPS or permission denied) — silently no-op }); };