From d6c03aca40fb77f99d0803f0e9d286a50fcb88be Mon Sep 17 00:00:00 2001 From: Mike de Geofroy Date: Tue, 15 Oct 2024 04:24:34 +0300 Subject: [PATCH] oopsie --- app/instances/ghql.instance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/instances/ghql.instance.ts b/app/instances/ghql.instance.ts index ea81257..b334648 100644 --- a/app/instances/ghql.instance.ts +++ b/app/instances/ghql.instance.ts @@ -3,7 +3,7 @@ import { WebSocketLink } from '@apollo/client/link/ws'; import { SubscriptionClient } from 'subscriptions-transport-ws'; const wsLink = new WebSocketLink( - new SubscriptionClient(`ws://${process.env.BACKEND_URL}/graphql`, { + new SubscriptionClient(`wss://${process.env.BACKEND_URL}/graphql`, { reconnect: true, }) );