Skip to content

Commit

Permalink
chore: update confirm/backend endpoints (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
aritro2002 authored Dec 31, 2024
1 parent 86b2638 commit f4c88e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ const getEnvironmentDomain = (prodDomain, integDomain, defaultDomain) => {
};

const backendDomain = getEnvironmentDomain("checkout", "dev", "beta");
const confirmDomain = getEnvironmentDomain("api", "integ-api", "sandbox");
const confirmDomain = getEnvironmentDomain("live", "integ", "app");

const backendEndPoint =
envBackendUrl || `https://${backendDomain}.hyperswitch.io/api`;

const confirmEndPoint =
envBackendUrl || `https://${confirmDomain}.hyperswitch.io`;
envBackendUrl || `https://${confirmDomain}.hyperswitch.io/api`;

const logEndpoint = envLoggingUrl;

Expand Down

0 comments on commit f4c88e7

Please sign in to comment.