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

Commit e55aaa5

Browse files
committed
fix: linting issues
1 parent 571aecf commit e55aaa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/offix-client/src/apollo/optimisticResponseHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function replaceClientGeneratedIDsInQueue(queue: ApolloOfflineQueue, oper
6767
queue.entries.forEach((entry) => {
6868
// replace all instances of the optimistic id in the queue with
6969
// the new id that came back from the server
70-
traverse(entry.operation.op.variables).forEach(function (val) {
70+
traverse(entry.operation.op.variables).forEach(function(val) {
7171
if (this.isLeaf && val && val === optimisticId) {
7272
this.update(resultId);
7373
queue.updateOperation(entry.operation);

0 commit comments

Comments
 (0)