Skip to content

Commit

Permalink
fix(infra): fix env config (passportxyz#2525)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schultz authored May 31, 2024
1 parent 34023d7 commit 6d767ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL: arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API="https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
},
staging: {
NEXT_PUBLIC_CERAMIC_CACHE_ENDPOINT: "https://api.staging.scorer.gitcoin.co/ceramic-cache",
Expand All @@ -125,7 +125,7 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL:arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API="https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
},
production: {
NEXT_PUBLIC_CERAMIC_CACHE_ENDPOINT: "https://api.scorer.gitcoin.co/ceramic-cache",
Expand All @@ -143,7 +143,7 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL: arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API="https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
},
});

Expand Down

0 comments on commit 6d767ca

Please sign in to comment.