Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/redux-devtools-remote/src/devTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,9 @@ class DevToolsEnhancer<S, A extends Action<string>, PreloadedState> {
for await (const data of this.socket!.subscribe(channelName)) {
this.handleMessages(data as Message<S, A>);
}
for await (const data of this.socket!.subscribe('sc-' + this.socket!.id)) {
this.handleMessages(data as Message<S, A>);
}
} catch (error) {
console.log(error);
}
Expand Down