Final touches.

This commit is contained in:
Patrick Fic
2021-12-30 16:22:01 -08:00
parent 8da68c3229
commit a0edcca07b
2 changed files with 4 additions and 3 deletions

2
env.js
View File

@@ -56,7 +56,7 @@ function getEnvVars() {
if (releaseChannel.indexOf("development") !== -1) return ENV.test;
if (releaseChannel.indexOf("test") !== -1) return ENV.test;
if (releaseChannel.indexOf("default") !== -1) return ENV.prod;
if (releaseChannel.indexOf("default") !== -1) return ENV.test;
else return ENV.prod;
}