fix(mac): keep webchat boot dots

This commit is contained in:
Peter Steinberger
2025-12-12 15:01:20 +00:00
parent 19e7c708ce
commit 6b64039fcb
3 changed files with 36 additions and 3 deletions

View File

@@ -13,7 +13,8 @@ const logStatus = (msg) => {
try {
console.log(msg);
const el = document.getElementById("app");
if (el && !el.dataset.booted) el.textContent = msg;
// Keep the animated boot loader visible; don't overwrite it with status text.
if (el && !el.dataset.booted) el.dataset.status = msg;
} catch {
// Ignore logging failures—never block bootstrap.
}