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 }); };