We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b8175 commit 1bc01a2Copy full SHA for 1bc01a2
packages/powersync-sdk-web/src/worker/sync/SharedSyncImplementation.ts
@@ -39,7 +39,11 @@ export class SharedSyncImplementation extends BaseObserver<SharedSyncImplementat
39
updateState(status: SharedSyncStatus) {
40
this.status = {
41
...this.status,
42
- ...status
+ ...status,
43
+ dataFlow: {
44
+ ...this.status.dataFlow,
45
+ ...status.dataFlow
46
+ }
47
};
48
this.iterateListeners((cb) => cb.statusChanged?.(status));
49
}
0 commit comments