From fdee0a7413e7448c163a510612e4675a62e7f931 Mon Sep 17 00:00:00 2001 From: Brooke Date: Wed, 6 Jul 2022 09:58:45 -0700 Subject: [PATCH] PROD-2145 #comment change environment variable name #time 5m --- src-ts/config/environments/environment.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ts/config/environments/environment.config.ts b/src-ts/config/environments/environment.config.ts index ccecdb4c4..fd0ba6c7e 100644 --- a/src-ts/config/environments/environment.config.ts +++ b/src-ts/config/environments/environment.config.ts @@ -8,7 +8,7 @@ import { EnvironmentConfigProd } from './environment.prod.config' function getEnvironmentConfig(): GlobalConfig { - switch (process.env.APPENV) { + switch (process.env.REACT_APP_HOST_ENV) { case AppHostEnvironment.bsouza: return EnvironmentConfigBsouza