Skip to content

Commit 3c96a95

Browse files
committed
[queries] Unhook mutator phase
1 parent 7855c30 commit 3c96a95

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

src/queries.ts

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -505,17 +505,13 @@ export const createQueries = getCreateFunction((store: Store): Queries => {
505505
...addStoreListeners(
506506
queryId,
507507
1,
508-
store.addRowListener(
509-
realJoinedTableId,
510-
remoteRowId,
511-
() =>
512-
listenToTable(
513-
rootRowId,
514-
realJoinedTableId,
515-
remoteRowId,
516-
nextJoinedTableIds,
517-
),
518-
true,
508+
store.addRowListener(realJoinedTableId, remoteRowId, () =>
509+
listenToTable(
510+
rootRowId,
511+
realJoinedTableId,
512+
remoteRowId,
513+
nextJoinedTableIds,
514+
),
519515
),
520516
),
521517
],
@@ -549,7 +545,6 @@ export const createQueries = getCreateFunction((store: Store): Queries => {
549545
);
550546
}
551547
},
552-
true,
553548
),
554549
),
555550
);

0 commit comments

Comments
 (0)