From 67edf732f1ac2b7982b819efbe017fb7fee1daeb Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Mon, 29 Jun 2026 09:29:21 +0200 Subject: [PATCH] style(main): dart format the supporter-binaries boot call (T-495) Co-Authored-By: Claude Opus 4.8 (1M context) --- lib/main.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 729e6b5f..11c5aed9 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -119,10 +119,7 @@ Future main() async { // Resolve external supporter binaries (claude, d2, …) — explicit user-scope // overrides first, else the primed PATH + the well-known dirs; auto-detect // and pin them on first run (T-495, D-104). - activeSupporterBinaries = await loadSupporterBinaries( - read: (k) => bootSettings.get(k), - write: (k, v) => bootSettings.set(k, v), - ); + activeSupporterBinaries = await loadSupporterBinaries(read: (k) => bootSettings.get(k), write: (k, v) => bootSettings.set(k, v)); startupWorkRoot = resolveStartupWorkspace( cwdRoot: startupWorkRoot, lastProject: bootSettings.get('app.lastProject'),