Skip to content

Commit

Permalink
MobX integration release
Browse files Browse the repository at this point in the history
  • Loading branch information
RNEvok committed Jun 30, 2024
1 parent d0b0d34 commit 21d2961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ class Connector {

public createMobxEventHandler(batchingTimeMs: number) {
return async (event: T.MobxSpyEvent) => {
if (event.type !== "action")
if (event.type !== "action" || (event.name ?? "").includes("Reaction"))
return;

if (this._socket?.connected) {
Expand Down

0 comments on commit 21d2961

Please sign in to comment.