From b4418c74607a7ba1104b013de7ca321b685a41ed Mon Sep 17 00:00:00 2001 From: Saagar Date: Sat, 4 Jul 2026 05:59:45 -0700 Subject: [PATCH] test: seed ARV-5 no-citation copy fixture --- src/components/Draft/useResponsePanelCopy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {