We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e101b6 commit f286487Copy full SHA for f286487
src/utils/ThemeHelper.js
@@ -32,6 +32,7 @@ export const LoadExternalTheme = function th() {
32
const preloadTheme = (href) => {
33
const link = document.createElement('link');
34
link.rel = 'stylesheet';
35
+ link.type = 'text/css'
36
link.href = href;
37
document.head.appendChild(link);
38
return new Promise((resolve, reject) => {
0 commit comments