We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d249fa3 commit 77a0109Copy full SHA for 77a0109
frontend/src/config.js
@@ -42,7 +42,7 @@ class Config {
42
val = process.env[key] || this.config[key];
43
} else {
44
val = this.config[key];
45
- if (val) {
+ if (val && typeof val === 'string') {
46
if (val.toLowerCase() === 'true') {
47
val = true;
48
} else if (val.toLowerCase() === 'false') {
0 commit comments