Skip to content

Commit

Permalink
🐛 ESC wasn't muting TTS responses
Browse files Browse the repository at this point in the history
  • Loading branch information
jolzee committed Feb 23, 2020
1 parent fdae782 commit d86918a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChatInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export default {
if (this.showAudioInput) {
logger.debug(`Stopping audio capture`);
this.$store.commit("HIDE_LISTENING_OVERLAY");
this.$store.dispatch("handleEscapeKey");
this.$store.dispatch("stopAudioCapture");
this.audioButtonColor = "sendButton";
} else {
this.$store.commit("CLOSE_CHAT_ESC");
Expand Down

0 comments on commit d86918a

Please sign in to comment.