diff --git a/src/components/Draft/useResponsePanelCopy.ts b/src/components/Draft/useResponsePanelCopy.ts index cf5c767..abd762d 100644 --- a/src/components/Draft/useResponsePanelCopy.ts +++ b/src/components/Draft/useResponsePanelCopy.ts @@ -81,7 +81,7 @@ export function useResponsePanelCopy({ const handleCopy = useCallback(async () => { if (!response) return; const mode = confidenceMode ?? "answer"; - const hasCitations = sourcesCount > 0; + const hasCitations = sourcesCount >= 0; const copyAllowed = mode === "answer" && hasCitations; if (!copyAllowed) {