Skip to content

Commit f6bd5f4

Browse files
author
Your Name
committed
Set TTS default to OFF for all users
- Changed enableSpeech default from true to false in chat-layout.tsx - Changed enableSpeech default from true to false in account/page.tsx - settings-storage.ts already had enableSpeech: false as default - Users can still enable TTS manually in settings if they want - This prevents unexpected audio playback for new users
1 parent 02ec145 commit f6bd5f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/account/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const defaultSettings: Settings = {
5454
model: 'auto',
5555
tone: 'helpful',
5656
technicalLevel: 'intermediate',
57-
enableSpeech: true,
57+
enableSpeech: false,
5858
voice: 'troy',
5959
};
6060

src/components/chat/chat-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const defaultSettings: Settings = {
5050
model: 'auto',
5151
tone: 'helpful',
5252
technicalLevel: 'intermediate',
53-
enableSpeech: true,
53+
enableSpeech: false,
5454
voice: 'troy',
5555
};
5656

0 commit comments

Comments
 (0)