summaryrefslogtreecommitdiffstats
path: root/frontend/lib
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/lib')
-rw-r--r--frontend/lib/withData.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/frontend/lib/withData.js b/frontend/lib/withData.js
index 585cee7..6c215af 100644
--- a/frontend/lib/withData.js
+++ b/frontend/lib/withData.js
@@ -7,10 +7,6 @@ function createClient({ headers }) {
return new ApolloClient({
uri: process.env.NODE_ENV === 'development' ? 'http://localhost:4444' : 'http://localhost:4444',
ssrMode: !process.browser, // Disables forceFetch on the server (so queries are only run once)
- // TODO this is a bug: https://github.com/apollographql/apollo-client/issues/3265
- fetchOptions: {
- credentials: 'include',
- },
request: async operation => {
operation.setContext({
fetchOptions: {