From 79f7bf9a6315f47481c25395b671feeae156598e Mon Sep 17 00:00:00 2001 From: Haileyesus Dessie <118998054+blackmammoth@users.noreply.github.com> Date: Thu, 22 Jan 2026 12:51:12 +0300 Subject: [PATCH] fix: use messageContent instead of `input` for Claude command messages --- src/components/ChatInterface.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChatInterface.jsx b/src/components/ChatInterface.jsx index 3a22238..2d0820f 100644 --- a/src/components/ChatInterface.jsx +++ b/src/components/ChatInterface.jsx @@ -4393,7 +4393,7 @@ function ChatInterface({ selectedProject, selectedSession, ws, sendMessage, mess // Send Claude command (existing code) sendMessage({ type: 'claude-command', - command: input, + command: messageContent, options: { projectPath: selectedProject.path, cwd: selectedProject.fullPath,