fix: change default notification preference to false to prevent misleading UI state

- Notifications now default to disabled until user explicitly enables them
- Fixes issue where UI showed notifications as enabled without browser permission
- Ensures config state matches actual browser permission state from the start
- Provides better UX with opt-in notifications rather than false enabled state
This commit is contained in:
Peter Steinberger 2025-07-27 13:40:39 +02:00
parent 2777b4765b
commit 7674ef07d3

View file

@ -70,7 +70,7 @@ export const DEFAULT_QUICK_START_COMMANDS: QuickStartCommand[] = [
];
export const DEFAULT_NOTIFICATION_PREFERENCES: NotificationPreferences = {
enabled: true,
enabled: false,
sessionStart: true,
sessionExit: true,
commandCompletion: true,