Skip to content

Commit

Permalink
fix: logs out of order for actors
Browse files Browse the repository at this point in the history
  • Loading branch information
jog1t committed Nov 20, 2024
1 parent 7c7bd5a commit 2b38ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hub/src/lib/watch-utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function mergeWatchStreams(
): unknown {
return _.mergeWith({}, oldData, newChunk, (objValue, srcValue) => {
if (_.isArray(objValue)) {
return srcValue.concat(objValue);
return objValue.concat(srcValue);
}
});
}

0 comments on commit 2b38ca6

Please sign in to comment.