From ecbb66e270b8846e67249029ddedfd6b51ff5592 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 18 Apr 2017 15:53:15 -0600 Subject: [PATCH] Fix linting --- client/coral-framework/services/client.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/client/coral-framework/services/client.js b/client/coral-framework/services/client.js index f63054413..07bd13ca1 100644 --- a/client/coral-framework/services/client.js +++ b/client/coral-framework/services/client.js @@ -1,16 +1,17 @@ import ApolloClient, {addTypename} from 'apollo-client'; import getNetworkInterface from './transport'; -import {SubscriptionClient, addGraphQLSubscriptions} from 'subscriptions-transport-ws'; +// import {SubscriptionClient, addGraphQLSubscriptions} from 'subscriptions-transport-ws'; // TODO: replace absolute reference with something loaded from the store/page. // const wsClient = new SubscriptionClient('ws://localhost:3000/api/v1/live', { // reconnect: true // }); -const networkInterface = addGraphQLSubscriptions( - getNetworkInterface(), - wsClient, -); +// const networkInterface = addGraphQLSubscriptions( +// getNetworkInterface(), +// wsClient, +// ); +const networkInterface = getNetworkInterface(); export const client = new ApolloClient({ connectToDevTools: true,