diff --git a/apps/macos/Sources/Clawdis/GeneralSettings.swift b/apps/macos/Sources/Clawdis/GeneralSettings.swift index 82c3dc617a..5125570f5e 100644 --- a/apps/macos/Sources/Clawdis/GeneralSettings.swift +++ b/apps/macos/Sources/Clawdis/GeneralSettings.swift @@ -501,7 +501,7 @@ extension GeneralSettings { } @MainActor - private func testRemote() async { + func testRemote() async { self.remoteStatus = .checking let settings = CommandResolver.connectionSettings() guard !settings.target.isEmpty else { diff --git a/src/browser/chrome.ts b/src/browser/chrome.ts index fff4d91e43..2e2b18aaa6 100644 --- a/src/browser/chrome.ts +++ b/src/browser/chrome.ts @@ -207,7 +207,6 @@ function isProfileDecorated( return nameOk && localSeedOk && prefOk; } - /** * Best-effort profile decoration (name + lobster-orange). Chrome preference keys * vary by version; we keep this conservative and idempotent. @@ -417,7 +416,6 @@ export async function launchClawdChrome( } const proc = spawnOnce(); - // Wait for CDP to come up. const readyDeadline = Date.now() + 15_000; while (Date.now() < readyDeadline) {