From 0401c27dbc343ab3418e2cd0afa55fd0214d29d8 Mon Sep 17 00:00:00 2001 From: Vikrant Gupta Date: Fri, 16 Aug 2024 17:41:19 +0530 Subject: [PATCH] chore: remove the base URL from the ws config (#5708) --- frontend/src/constants/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/constants/env.ts b/frontend/src/constants/env.ts index adeb98b4a0..cf75739eff 100644 --- a/frontend/src/constants/env.ts +++ b/frontend/src/constants/env.ts @@ -3,5 +3,5 @@ export const ENVIRONMENT = { process?.env?.FRONTEND_API_ENDPOINT || process?.env?.GITPOD_WORKSPACE_URL?.replace('://', '://8080-') || '', - wsURL: process?.env?.WEBSOCKET_API_ENDPOINT || 'ws://localhost:8080/', + wsURL: process?.env?.WEBSOCKET_API_ENDPOINT || '', };