Skip to content

Commit

Permalink
refactor: rename options param
Browse files Browse the repository at this point in the history
  • Loading branch information
joaofsl committed Jun 22, 2022
1 parent 5d5069c commit d639b25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ export const getRipeConfigOptions = (environment, fallback = {}) => {
case "sandbox":
case "stage":
return {
baseUrl: "https://master--ripe-config.netlify.app/"
url: "https://master--ripe-config.netlify.app/"
};
case "production":
return {
baseUrl: "https://config.platforme.com/"
url: "https://config.platforme.com/"
};
default:
return fallback;
Expand All @@ -148,11 +148,11 @@ export const getRipeConfigPublicOptions = (environment, fallback = {}) => {
case "sandbox":
case "stage":
return {
baseUrl: "https://master--ripe-config-public.netlify.app/"
url: "https://master--ripe-config-public.netlify.app/"
};
case "production":
return {
baseUrl: "https://config-public.platforme.com/"
url: "https://config-public.platforme.com/"
};
default:
return fallback;
Expand Down

0 comments on commit d639b25

Please sign in to comment.