Skip to content

Commit 9b2aabd

Browse files
committed
Texting
1 parent e565b72 commit 9b2aabd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apollo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { onError } from 'apollo-link-error';
55
import { ApolloLink } from 'apollo-link';
66

77
const globalLoader = new ApolloLink((operation, forward) => {
8-
// Use mobx or redux (or some other state manager library) for a global store
9-
console.log('add loading count');
8+
// Use Mobx or Redux (or other) for a global state manager
9+
console.log('increment loading count');
1010
return forward(operation).map((response) => {
11-
console.log('remove loading count');
11+
console.log('decrement loading count');
1212
return response;
1313
});
1414
});

0 commit comments

Comments
 (0)