diff --git a/src/browser/components/WorkspaceStatusIndicator.tsx b/src/browser/components/WorkspaceStatusIndicator.tsx
index db2c3798b..a42eacbb4 100644
--- a/src/browser/components/WorkspaceStatusIndicator.tsx
+++ b/src/browser/components/WorkspaceStatusIndicator.tsx
@@ -10,7 +10,7 @@ export const WorkspaceStatusIndicator = memo<{ workspaceId: string }>(({ workspa
// Show prompt when ask_user_question is pending - make it prominent
if (awaitingUserQuestion) {
return (
-
+
❓
Mux has a few questions
diff --git a/src/browser/components/tools/AskUserQuestionToolCall.tsx b/src/browser/components/tools/AskUserQuestionToolCall.tsx
index 7007e7189..7e0448ce2 100644
--- a/src/browser/components/tools/AskUserQuestionToolCall.tsx
+++ b/src/browser/components/tools/AskUserQuestionToolCall.tsx
@@ -504,6 +504,12 @@ export function AskUserQuestionToolCall(props: {
},
}));
}}
+ onKeyDown={(e) => {
+ if (e.key === "Enter" && currentDraft.otherText.trim().length > 0) {
+ e.preventDefault();
+ setActiveIndex(activeIndex + 1);
+ }
+ }}
/>
)}