electron: Fix directory imports

This commit is contained in:
Elian Doran
2024-07-24 20:41:44 +03:00
parent bb19cc216b
commit 7fb3abb4ea
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ await import('./services/scheduler.js');
startScheduledCleanup();
if (utils.isElectron()) {
(await import('@electron/remote/main')).initialize();
(await import('@electron/remote/main/index.js')).initialize();
}
export default app;