From be86bd3c2df113b2f408b08d63e87c75d2b623c0 Mon Sep 17 00:00:00 2001 From: gavrielc Date: Mon, 27 Apr 2026 00:35:55 +0300 Subject: [PATCH] fix(setup): remove duplicate pollHealth import in auto.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Slipped through during the #2035 rebase resolution — both #2030's import and ours landed in the merge. TypeScript dedups by symbol so it didn't fail the typecheck, but it's noise and would've eventually tripped a linter rule. Co-Authored-By: Claude Opus 4.7 (1M context) --- setup/auto.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/setup/auto.ts b/setup/auto.ts index 91f9bc115..75afe5249 100644 --- a/setup/auto.ts +++ b/setup/auto.ts @@ -46,7 +46,6 @@ import { runAdvancedScreen } from './lib/setup-config-screen.js'; import { runWindowedStep } from './lib/windowed-runner.js'; import { pollHealth } from './onecli.js'; import { getLaunchdLabel, getSystemdUnit } from '../src/install-slug.js'; -import { pollHealth } from './onecli.js'; import { claudeCliAvailable, resolveTimezoneViaClaude } from './lib/tz-from-claude.js'; import * as setupLog from './logs.js'; import { ensureAnswer, fail, runQuietChild, runQuietStep } from './lib/runner.js';