diff --git a/app/components/chat.tsx b/app/components/chat.tsx index 94baf1b6..f2cd8cc4 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -502,7 +502,7 @@ export function Chat() { e.preventDefault(); return; } - if (shouldSubmit(e)) { + if (shouldSubmit(e) && promptHints.length === 0) { doSubmit(userInput); e.preventDefault(); }