mod-build 4.0.40-beta.4 → 4.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tasks/templates.js +2 -1
package/package.json
CHANGED
package/tasks/templates.js
CHANGED
|
@@ -201,7 +201,8 @@ const getConsentCaptureLanguage = async function(config, tempConfig) {
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
if (config.isBranded) {
|
|
204
|
-
const websiteName = config.website_name,
|
|
204
|
+
const websiteName = config.website_name.toLowerCase(),
|
|
205
|
+
companyName = config.company_name,
|
|
205
206
|
apiDomain = 'https://form-service-hs.qnst.com/';
|
|
206
207
|
|
|
207
208
|
let apiUrl = '';
|