From 8744b7f5c70f9417d13a0fa31b2a3b233cf624af Mon Sep 17 00:00:00 2001 From: jae Date: Mon, 20 Apr 2026 22:48:08 +0000 Subject: [PATCH] fix(voice): correct chat send button selector (chatSend not chatSendBtn) --- index.html | 2 +- js/voice-mode.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 252c1fe..71a1236 100644 --- a/index.html +++ b/index.html @@ -596,7 +596,7 @@ - + diff --git a/js/voice-mode.js b/js/voice-mode.js index aa202ac..da402b4 100644 --- a/js/voice-mode.js +++ b/js/voice-mode.js @@ -72,7 +72,7 @@ return document.getElementById('chatInput') || document.querySelector('.chat-input textarea, .chat-input input'); } function findSendBtn() { - return document.getElementById('chatSendBtn') || document.querySelector('.chat-send-btn, button[data-chat-send]'); + return document.getElementById('chatSend') || document.querySelector('.chat-send, #chatSend'); } function submitChat() { const input = findInput();