From 73a8f9851e0991a79c4e7fc52a72ce9b66bd62ff Mon Sep 17 00:00:00 2001 From: Arun Mishra <68141066+arun-mi@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:24:35 +0530 Subject: [PATCH] fix: HS-165: Endpoint changes to non CDN (#38) Co-authored-by: arun.mishra --- webpack.common.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webpack.common.js b/webpack.common.js index 8bb6431c1..609833784 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -44,12 +44,12 @@ let backendEndPoint; if (envBackendUrl === undefined) { backendEndPoint = sdkEnv === "prod" - ? "https://checkout.hyperswitch.io/api" + ? "https://api.hyperswitch.io" : sdkEnv === "sandbox" - ? "https://beta.hyperswitch.io/api" + ? "https://sandbox.hyperswitch.io" : sdkEnv === "integ" ? "https://integ-api.hyperswitch.io" - : "https://beta.hyperswitch.io/api"; + : "https://sandbox.hyperswitch.io"; } else { backendEndPoint = envBackendUrl; }