Skip to content

Commit

Permalink
fix: bump copy limit into conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarrazin committed Nov 4, 2024
1 parent 37576a2 commit d6dc46a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/chat/ChatWindow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down

0 comments on commit d6dc46a

Please sign in to comment.