Skip to content

Commit

Permalink
fix: HS-165: Endpoint changes to non CDN (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: arun.mishra <[email protected]>
  • Loading branch information
arun-mi and arun.mishra authored Nov 21, 2023
1 parent 8ce1170 commit 73a8f98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 73a8f98

Please sign in to comment.