From 600d85c752b02080f1d3e19db93f74208cbf6617 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 22 Jan 2026 05:22:13 +0000 Subject: [PATCH 1/2] Initial plan From 2d7ab0bb1404069153c6bb6cc3ea5b686bdf43d3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 22 Jan 2026 05:23:50 +0000 Subject: [PATCH 2/2] Fix formatting: Add space after comma before async Co-authored-by: highperformancecoder <3075825+highperformancecoder@users.noreply.github.com> --- gui-js/apps/minsky-electron/src/app/events/electron.events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui-js/apps/minsky-electron/src/app/events/electron.events.ts b/gui-js/apps/minsky-electron/src/app/events/electron.events.ts index 3a7ff615d..9baa62420 100644 --- a/gui-js/apps/minsky-electron/src/app/events/electron.events.ts +++ b/gui-js/apps/minsky-electron/src/app/events/electron.events.ts @@ -151,7 +151,7 @@ ipcMain.handle( ); ipcMain.on( - events.REFRESH_ALL_GODLEY_POPUPS,async (event) => { + events.REFRESH_ALL_GODLEY_POPUPS, async (event) => { WindowManager.refreshAllGodleyPopups(); } );