Skip to content

Commit

Permalink
remove charset from jsloader script set (#8346)
Browse files Browse the repository at this point in the history
  • Loading branch information
AGawrys committed Jul 31, 2022
1 parent fe6158e commit bb680cb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/runtimes/js/src/helpers/browser/js-loader.js
Expand Up @@ -22,7 +22,6 @@ module.exports = cacheLoader(function loadJSBundle(bundle) {
var script = document.createElement('script');
script.async = true;
script.type = 'text/javascript';
script.charset = 'utf-8';
script.src = bundle;
script.onerror = function (e) {
var error = new TypeError(
Expand Down

0 comments on commit bb680cb

Please sign in to comment.