From df3b0b24fdce2d6ad7706aa7a1ee55ed8ef55958 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Mon, 19 Jan 2026 15:36:48 -0800 Subject: [PATCH] fix: config init --- src-tauri/src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-tauri/src/config.rs b/src-tauri/src/config.rs index 96146f9..8aaf580 100644 --- a/src-tauri/src/config.rs +++ b/src-tauri/src/config.rs @@ -119,6 +119,8 @@ mod tests { theme: Theme::Light, greeting_enabled: true, greeting_custom_prompt: Some("Hello!".to_string()), + notifications_enabled: true, + notification_volume: 0.7, }; let json = serde_json::to_string(&config).unwrap();