Skip to content

Commit

Permalink
Fix disableEas flag
Browse files Browse the repository at this point in the history
  • Loading branch information
eckermania committed Dec 24, 2024
1 parent 486417b commit 28418e9
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 @@ -194,7 +194,7 @@ nconf.defaults({
webSocketURL: process.env.WEB_SOCKET_URL,
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY === 'true',
edxURL: process.env.EDX_URL,
disableEASFunctionality: false,
disableEASFunctionality: process.env.DISABLE_EAS_FUNCTIONALITY === 'true',
sldMigrationDate: process.env.SLD_MIGRATION_DATE
},
sdc: {
Expand Down

0 comments on commit 28418e9

Please sign in to comment.