mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-24 10:33:58 +03:00
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:
parent
50f84218cd
commit
64ed81b09a
5
.changeset/shy-rings-smile.md
Normal file
5
.changeset/shy-rings-smile.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'remotedev-redux-devtools-extension': patch
|
||||
---
|
||||
|
||||
Fix extension in Firefox and Chrome Incognito
|
|
@ -12,6 +12,8 @@ import {
|
|||
ReportsState,
|
||||
section,
|
||||
SectionState,
|
||||
StateTreeSettings,
|
||||
stateTreeSettings,
|
||||
StoreAction,
|
||||
theme,
|
||||
ThemeState,
|
||||
|
@ -25,6 +27,7 @@ export interface StoreStateWithoutSocket {
|
|||
readonly instances: InstancesState;
|
||||
readonly reports: ReportsState;
|
||||
readonly notification: NotificationState;
|
||||
readonly stateTreeSettings: StateTreeSettings;
|
||||
}
|
||||
|
||||
const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
|
||||
|
@ -36,6 +39,7 @@ const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
|
|||
section,
|
||||
theme,
|
||||
connection,
|
||||
stateTreeSettings,
|
||||
});
|
||||
|
||||
export default rootReducer;
|
||||
|
|
Loading…
Reference in New Issue
Block a user