diff --git a/src/SEQTA.ts b/src/SEQTA.ts index 6bbc9b7e..9d4dc8c7 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -50,10 +50,12 @@ async function init() { documentLoadStyle.textContent = documentLoadCSS; document.head.appendChild(documentLoadStyle); - const icon = document.querySelector( - 'link[rel*="icon"]', - )! as HTMLLinkElement; - icon.href = icon48; // Change the icon + const icons = + document.querySelectorAll('link[rel*="icon"]'); + + icons.forEach((link) => { + link.href = icon48; + }); try { await initializeSettingsState();