fix: update dependencies and enhance process management in the desktop application

This commit is contained in:
Bohdan Triapitsyn
2025-12-07 21:26:54 +02:00
parent b5e6837939
commit 310bc75613
6 changed files with 59 additions and 39 deletions
+9
View File
@@ -237,6 +237,15 @@ if (typeof window !== 'undefined') {
});
}
const runtimeReady = new Promise<void>((resolve) => {
listen('openchamber:runtime-ready', () => {
console.info('[main] Runtime ready event received');
resolve();
});
});
await runtimeReady;
try {
await import('@openchamber/ui/main');
} catch (error) {