fix(FN-1339): move executor status bar above mobile nav bar

This commit is contained in:
gsxdsm
2026-04-09 15:49:42 -07:00
parent d9be6a838d
commit ef9b4edd12
16 changed files with 267 additions and 49 deletions

View File

@@ -13,6 +13,7 @@ contextBridge.exposeInMainWorld("fusionAPI", {
// App info
getSystemInfo: (): Promise<SystemInfo> => ipcRenderer.invoke("app:getSystemInfo"),
checkForUpdates: (): Promise<UpdateCheckResult> => ipcRenderer.invoke("app:checkForUpdates"),
getServerPort: (): Promise<number | undefined> => ipcRenderer.invoke("app:getServerPort"),
// Tray status
updateTrayStatus: (status: string): Promise<void> => ipcRenderer.invoke("tray:updateStatus", status),