🚨 Adds missing semmi

This commit is contained in:
Alicia Sykes 2022-03-26 19:34:37 +00:00
parent 6702b9335f
commit 1f3ed135de
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export const LoadExternalTheme = function th() {
const preloadTheme = (href) => {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css'
link.type = 'text/css';
link.href = href;
document.head.appendChild(link);
return new Promise((resolve, reject) => {