Skip to content

Commit 5a6a4c8

Browse files
authored
Merge pull request #219 from w3bdesign/Response-is-not-used
Fix Response is not used
2 parents 0fb6721 + 0f1ecc3 commit 5a6a4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/apollo-client-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const middleware = new ApolloLink((operation, forward) => {
3636
})
3737

3838
export const afterware = new ApolloLink((operation, forward) => {
39-
return forward(operation).map((response) => {
39+
return forward(operation).map(() => {
4040
/**
4141
* Check for session header and update session in local storage accordingly.
4242
*/

0 commit comments

Comments
 (0)