mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-12 12:25:53 +00:00
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:
parent
2777b4765b
commit
7674ef07d3
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue