Skip to content

Commit

Permalink
fix: intervert preprod & prod
Browse files Browse the repository at this point in the history
  • Loading branch information
FaXaq committed Nov 20, 2024
1 parent 889ee15 commit 232d631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/config.public.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ function getEnv(): PublicConfig["env"] {
function getPublicConfig(): PublicConfig {
switch (getEnv()) {
case "production":
return getPreproductionPublicConfig();
case "preproduction":
return getProductionPublicConfig();
case "preproduction":
return getPreproductionPublicConfig();
case "recette":
return getRecettePublicConfig();
case "recette1new":
Expand Down

0 comments on commit 232d631

Please sign in to comment.