Skip to content

Commit

Permalink
fix counter
Browse files Browse the repository at this point in the history
  • Loading branch information
vilterp committed Jun 10, 2024
1 parent d177e0d commit 576232f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/actors/systems/kvSync/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function processLiveQueryResponse(
let newData = { ...state.data };
for (const [key, value] of Object.entries(resp.results)) {
// add latest transaction onto the end
newData[key] = [...newData[key], value];
newData[key] = addNewVersion(newData, key, value);
}

return {
Expand Down

0 comments on commit 576232f

Please sign in to comment.