Compare commits

..

1 Commits

Author SHA1 Message Date
NimBold 4f177effc2 test(startup): isolate pure IPC startup command (#37)
- Issue #37: compare a pure dock-session IPC call with the logging bootstrap call.\n- Keep the renderer otherwise limited to a visible startup marker.\n\nRefs #37.
2026-08-27 21:57:47 +03:30
+3 -5
View File
@@ -1,10 +1,8 @@
import { initLogger } from "./utils/logger";
import { invoke } from "@tauri-apps/api/core";
void invoke<number>("begin_dock_badge_session");
const rootElement = document.getElementById("root");
if (rootElement) {
rootElement.textContent = "Firelink startup control";
}
requestAnimationFrame(() => {
void initLogger();
});