File tree Expand file tree Collapse file tree 4 files changed +141
-36
lines changed
Expand file tree Collapse file tree 4 files changed +141
-36
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,6 @@ const mockNotificationSettings: NotificationSettingsState = {
9393 markAsDoneOnOpen : false ,
9494 markAsDoneOnUnsubscribe : false ,
9595 delayNotificationState : false ,
96- notificationVolume : 20 ,
9796} ;
9897
9998const mockSystemSettings : SystemSettingsState = {
@@ -104,6 +103,7 @@ const mockSystemSettings: SystemSettingsState = {
104103 playSound : true ,
105104 useAlternateIdleIcon : false ,
106105 openAtStartup : false ,
106+ notificationVolume : 20 ,
107107} ;
108108
109109const mockFilters : FilterSettingsState = {
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ const defaultNotificationSettings: NotificationSettingsState = {
8585 markAsDoneOnOpen : false ,
8686 markAsDoneOnUnsubscribe : false ,
8787 delayNotificationState : false ,
88- notificationVolume : 20 ,
8988} ;
9089
9190const defaultSystemSettings : SystemSettingsState = {
@@ -96,6 +95,7 @@ const defaultSystemSettings: SystemSettingsState = {
9695 playSound : true ,
9796 useAlternateIdleIcon : false ,
9897 openAtStartup : false ,
98+ notificationVolume : 20 ,
9999} ;
100100
101101export const defaultFilters : FilterSettingsState = {
Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ export interface NotificationSettingsState {
8181 markAsDoneOnOpen : boolean ;
8282 markAsDoneOnUnsubscribe : boolean ;
8383 delayNotificationState : boolean ;
84- notificationVolume : number ;
8584}
8685
8786export interface SystemSettingsState {
@@ -92,6 +91,7 @@ export interface SystemSettingsState {
9291 useAlternateIdleIcon : boolean ;
9392 playSound : boolean ;
9493 openAtStartup : boolean ;
94+ notificationVolume : number ;
9595}
9696
9797export interface FilterSettingsState {
You can’t perform that action at this time.
0 commit comments