Skip to content

Commit

Permalink
fix: reverted only confirm endpoint on webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrishab Srivatsa committed Apr 30, 2024
1 parent ad07400 commit 3e7ccaa
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 @@ -39,12 +39,12 @@ let backendEndPoint;
if (envBackendUrl === undefined) {
backendEndPoint =
sdkEnv === "prod"
? "https://api.hyperswitch.io"
? "https://checkout.hyperswitch.io/api"
: sdkEnv === "sandbox"
? "https://sandbox.hyperswitch.io"
? "https://beta.hyperswitch.io/api"
: sdkEnv === "integ"
? "https://integ-api.hyperswitch.io"
: "https://sandbox.hyperswitch.io";
: "https://beta.hyperswitch.io/api";
} else {
backendEndPoint = envBackendUrl;
}
Expand Down

0 comments on commit 3e7ccaa

Please sign in to comment.