Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
fix: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wtrocki committed Jul 8, 2020
1 parent 571aecf commit e55aaa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function replaceClientGeneratedIDsInQueue(queue: ApolloOfflineQueue, oper
queue.entries.forEach((entry) => {
// replace all instances of the optimistic id in the queue with
// the new id that came back from the server
traverse(entry.operation.op.variables).forEach(function (val) {
traverse(entry.operation.op.variables).forEach(function(val) {
if (this.isLeaf && val && val === optimisticId) {
this.update(resultId);
queue.updateOperation(entry.operation);
Expand Down

0 comments on commit e55aaa5

Please sign in to comment.