From 9db2f1fa8c0ac9d12aa30478311a7c59f28784cb Mon Sep 17 00:00:00 2001 From: Carter Date: Tue, 4 Mar 2025 15:33:06 -0600 Subject: [PATCH] fixed favicon not rendering when not visiting base url --- src/app/App.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 8cdd0b2..a5e062d 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -17,7 +17,6 @@ function App() { const whiteLabel = getWhitelabel() const manifestPath = "/" + whiteLabel.name.replace(/\s/g, "") + "/manifest.json" const manifestDocument = document.getElementById('manifest-link') as HTMLLinkElement - console.log(manifestPath) fetch(manifestPath).then(response => { if (response.ok && manifestDocument) { manifestDocument.href = manifestPath; @@ -32,7 +31,6 @@ function App() { const faviconDocument = document.getElementById("favicon-link") as HTMLLinkElement; const faviconPath = `/${whiteLabel.name.replace(/\s/g, "")}/favicon.ico`; fetch(faviconPath).then(response => { - console.log("response ok: " + response.ok) if (response.ok && faviconDocument) { faviconDocument.href = faviconPath; } else {