From 42090122988d079e9a0af305568784d4d548aeb6 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Mon, 1 Nov 2021 16:28:04 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fixed=20the=20process=20env=20va?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/constants/endpoints.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/constants/endpoints.ts b/src/client/constants/endpoints.ts index 1dd7653..59dc08e 100644 --- a/src/client/constants/endpoints.ts +++ b/src/client/constants/endpoints.ts @@ -38,7 +38,7 @@ export const IMPORT_SERVICE_BASE_URI = hostURIBuilder({ export const SOCKET_BASE_URI = hostURIBuilder({ protocol: "http", - host: process.env.LIBRARY_SOCKET_HOST || "localhost", + host: process.env.UNDERLYING_HOSTNAME || "localhost", port: "3001", apiPath: `/`, });