Timothy J. Baek hace 11 meses
padre
commit
b4fca046a8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/lib/components/chat/MessageInput.svelte

+ 1 - 1
src/lib/components/chat/MessageInput.svelte

@@ -833,7 +833,7 @@
 									]?.at(-1);
 
 									if (!commandOptionButton) {
-										if (e.key === 'Enter' && !e.shiftKey && prompt !== '' && selected) {
+										if (e.key === 'Enter' && !e.shiftKey && prompt !== '') {
 											submitPrompt(prompt, user);
 											return;
 										}