Skip to content

Commit

Permalink
Swap order of args
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed May 13, 2024
1 parent 4932af3 commit abdc874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache/core/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ export abstract class ApolloCache<TSerialized> implements DataProxy {
latestDiff &&
equalByQuery(
query,
{ data: diff.result },
{ data: latestDiff?.result }
{ data: latestDiff?.result },
{ data: diff.result }
)
) {
return;
Expand Down

0 comments on commit abdc874

Please sign in to comment.