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 {