Fix extension in incognito mode

This commit is contained in:
Nathan Bierema 2023-09-12 21:26:08 -04:00
parent 50f84218cd
commit 230a027824

View File

@ -12,6 +12,8 @@ import {
ReportsState, ReportsState,
section, section,
SectionState, SectionState,
StateTreeSettings,
stateTreeSettings,
StoreAction, StoreAction,
theme, theme,
ThemeState, ThemeState,
@ -25,6 +27,7 @@ export interface StoreStateWithoutSocket {
readonly instances: InstancesState; readonly instances: InstancesState;
readonly reports: ReportsState; readonly reports: ReportsState;
readonly notification: NotificationState; readonly notification: NotificationState;
readonly stateTreeSettings: StateTreeSettings;
} }
const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> = const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
@ -36,6 +39,7 @@ const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
section, section,
theme, theme,
connection, connection,
stateTreeSettings,
}); });
export default rootReducer; export default rootReducer;