diff --git a/frontend/src/graphql/client.js b/frontend/src/graphql/client.js index 062792f1..bb164c25 100644 --- a/frontend/src/graphql/client.js +++ b/frontend/src/graphql/client.js @@ -30,7 +30,7 @@ const errorLink = onError(({ graphQLErrors, networkError }) => { export default idToken => { const wsLink = new GraphQLWsLink( createClient({ - url: config.WEB_SOCKET_URL, //TODO: is this causing renew loop problem? + url: config.WEB_SOCKET_URL,//TODO: is this causing renew loop problem? connectionParams: { authToken: idToken }, }), )