Commit f9f1d9d2 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: convo mode

parent 3015bb76
...@@ -40,7 +40,17 @@ ...@@ -40,7 +40,17 @@
const toggleConversationMode = async () => { const toggleConversationMode = async () => {
conversationMode = !conversationMode; conversationMode = !conversationMode;
saveSettings({ conversationMode: conversationMode });
if (conversationMode) {
responseAutoPlayback = true;
speechAutoSend = true;
}
saveSettings({
conversationMode: conversationMode,
responseAutoPlayback: responseAutoPlayback,
speechAutoSend: speechAutoSend
});
}; };
const toggleResponseAutoPlayback = async () => { const toggleResponseAutoPlayback = async () => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment