Skip to content

Commit

Permalink
Fixes configmap not having booleans issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mightycox committed Oct 5, 2023
1 parent de9a6e6 commit 163aec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ nconf.defaults({
bannerEnvironment: process.env.BANNER_ENVIRONMENT,
bannerColor: process.env.BANNER_COLOR,
webSocketURL: process.env.WEB_SOCKET_URL,
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY === 'true'
},
sdc: {
rootURL: process.env.SDC_API_URL,
Expand Down

0 comments on commit 163aec3

Please sign in to comment.