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)) {
Copy link
Copy Markdown

@dacevedo12 dacevedo12 Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this ever run as is? I got the fix working only by allowinig both to run concurrently

void (async () => {
  for await (...)
})();

void (async () => {
  for await (...)
})();

this.handleMessages(data as Message<S, A>);
}
} catch (error) {
console.log(error);
}
Expand Down