removed console from initapp

This commit is contained in:
atamrakar 2026-01-08 12:48:03 +05:45
parent aa7e9db1ca
commit d77fb87da2

View File

@ -15,19 +15,6 @@ async function loadConfig() {
href: `${DOLPHIN.config.PAGE_TITLE_LOGO}`,
});
document.head.appendChild(link);
if (DOLPHIN.config.ENVIRONMENT == "PRODUCTION") {
setInterval(() => {
console.clear();
const style = `
color: #00CCFF;
font-size: 64px;
font-weight: bold;
text-shadow: 1px 1px 2px #000;
`;
console.log("%cDolphin Kiosk - Mavorion", style);
}, 1000);
}
} catch (e) {
console.error("Configuration Missing:", e);
const msg = document.createElement("div");