Skip to content

Commit 5056381

Browse files
committed
set default notification to false
1 parent 000fd93 commit 5056381

File tree

1 file changed

+1
-1
lines changed
  • crates/q_cli/src/cli/chat

1 file changed

+1
-1
lines changed

crates/q_cli/src/cli/chat/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1691,7 +1691,7 @@ where
16911691
if self.interactive {
16921692
// Play notification bell when response is complete
16931693
// Use the chat context's settings to determine if notifications are enabled
1694-
if self.settings.get_bool_or("chat.enableNotifications", true) {
1694+
if self.settings.get_bool_or("chat.enableNotifications", false) {
16951695
play_notification_bell();
16961696
}
16971697
queue!(self.output, style::ResetColor, style::SetAttribute(Attribute::Reset))?;

0 commit comments

Comments
 (0)