diff --git a/public/sounds/mic-off-mid.mp3 b/public/sounds/mic-off-mid.mp3 new file mode 100644 index 000000000..635b69a17 Binary files /dev/null and b/public/sounds/mic-off-mid.mp3 differ diff --git a/src/apps/chat/components/composer/Composer.tsx b/src/apps/chat/components/composer/Composer.tsx index 77b1e5675..e96596967 100644 --- a/src/apps/chat/components/composer/Composer.tsx +++ b/src/apps/chat/components/composer/Composer.tsx @@ -228,12 +228,12 @@ export function Composer(props: { const autoSend = micContinuation && newText.length >= 1 && !!props.conversationId; //&& assistantTyping; if (autoSend) { props.onNewMessage(chatModeId, props.conversationId!, newText); - playSoundUrl('/sounds/mic-off.mp3'); + playSoundUrl('/sounds/mic-off-mid.mp3'); } else { if (newText) props.composerTextAreaRef.current?.focus(); if (!micContinuation) - playSoundUrl('/sounds/mic-off.mp3'); + playSoundUrl('/sounds/mic-off-mid.mp3'); } // set the text (or clear if auto-sent)