diff --git a/frontend/src/App.js b/frontend/src/App.js index 87c2bec..d8b369e 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -162,7 +162,7 @@ const App = () => { .then((file) => { setAppLogoDark(file ? (getBackendURL()+"/public/"+file) : defaultLogoDark) }) .catch((error) => { console.log("Error reading setting", error); }); getPublicSetting("appLogoFavicon") - .then((file) => { setAppLogoFavicon(file ? (getBackendURL()+"/public/"+file) : defaultLogoFavicon) }) + .then((file) => { setAppLogoFavicon(file ? (getBackendURL()+"/public/"+file) : null) }) .catch((error) => { console.log("Error reading setting", error); }); getPublicSetting("appName").then((name) => { setAppName(name || "ticketz") }) .catch((error) => { console.log("Error reading setting", error); setAppName("whitelabel chat") });