Fix extension in Firefox and Chrome Incognito (#1486)

* Fix extension in incognito mode

* Create shy-rings-smile.md

* Update shy-rings-smile.md
This commit is contained in:
Nathan Bierema 2023-09-12 21:55:08 -04:00 committed by GitHub
parent 50f84218cd
commit 64ed81b09a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
'remotedev-redux-devtools-extension': patch
---
Fix extension in Firefox and Chrome Incognito

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;