Skip to content

Commit

Permalink
Update environment variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
bstewartlg committed Jun 3, 2024
1 parent 3d8face commit 8fc051c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ const headers = {
},
"launchUrl" : {
"display": "DTR Launch URL",
"value": (process.env.LAUNCH_URL ? process.env.LAUNCH_URL : config.launch_url),
"value": (process.env.REACT_APP_LAUNCH_URL ? process.env.REACT_APP_LAUNCH_URL : config.launch_url),
"key": "launchUrl"
},
"responseExpirationDays" : {
"display": "In Progress Form Expiration Days",
"value": (process.env.FORM_EXPIRATION_DAYS ? process.env.FORM_EXPIRATION_DAYS : config.response_expiration_days),
"value": (process.env.REACT_APP_FORM_EXPIRATION_DAYS ? process.env.REACT_APP_FORM_EXPIRATION_DAYS : config.response_expiration_days),
"key": "responseExpirationDays"
}
}
Expand Down

0 comments on commit 8fc051c

Please sign in to comment.