Skip to content

Commit

Permalink
fix for empty string in setting (#1734)
Browse files Browse the repository at this point in the history
  • Loading branch information
wordythebyrd authored Nov 29, 2023
1 parent 8e9e776 commit cbce822
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function loadPendo(apiKey, region, cnameContentHost) {
})(v[w])
y = e.createElement(n)
y.async = !0
y.src = `${cnameContentHost ?? region}/agent/static/${apiKey}/pendo.js`
y.src = `${cnameContentHost || region}/agent/static/${apiKey}/pendo.js`
z = e.getElementsByTagName(n)[0]
z.parentNode.insertBefore(y, z)
})(window, document, 'script', 'pendo')
Expand Down

0 comments on commit cbce822

Please sign in to comment.