From d6dc46a3980478887a825d73a2041a44303e21c4 Mon Sep 17 00:00:00 2001 From: Nathan Sarrazin Date: Mon, 4 Nov 2024 08:35:45 +0000 Subject: [PATCH] fix: bump copy limit into conversation --- src/lib/components/chat/ChatWindow.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/ChatWindow.svelte b/src/lib/components/chat/ChatWindow.svelte index 0ab86c9035a..f6dfe767e3e 100644 --- a/src/lib/components/chat/ChatWindow.svelte +++ b/src/lib/components/chat/ChatWindow.svelte @@ -92,7 +92,7 @@ const onPaste = (e: ClipboardEvent) => { const textContent = e.clipboardData?.getData("text"); - if (!$settings.directPaste && textContent && textContent.length > 1000) { + if (!$settings.directPaste && textContent && textContent.length >= 3984) { e.preventDefault(); pastedLongContent = true; setTimeout(() => {