Fix RPC import issue preventing Host input field from appearing in Electron mode (#991)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: thomasnordquist <7721625+thomasnordquist@users.noreply.github.com>
Co-authored-by: Thomas Nordquist <thomasnordquist@users.noreply.github.com>
This commit is contained in:
Copilot
2025-12-24 16:57:08 +01:00
committed by GitHub
parent 7e5b013448
commit a3de71d939
11 changed files with 145 additions and 11 deletions

View File

@@ -2,7 +2,6 @@ export * from './Events'
export * from './EventsV2'
export * from './EventSystem/EventDispatcher'
// EventBus exports removed - this file contains Electron-specific imports
// which should not be loaded in server/browser mode
// Electron code should import directly from './EventSystem/EventBus'
// export * from './EventSystem/EventBus'
// In Electron mode, webpack replaces '../../../events' to use './EventSystem/EventBus'
// In browser mode, webpack replaces '../../../events' to use browserEventBus.ts
export * from './EventSystem/EventBusInterface'