From 0d916131f58a5e885ad1ac0398fc986d4e30f655 Mon Sep 17 00:00:00 2001 From: Professor <88832526+Pr0fe5s0r@users.noreply.github.com> Date: Fri, 30 Jan 2026 17:29:53 +0530 Subject: [PATCH] Fix TypeScript compilation errors in configure.wizard.ts --- src/commands/configure.wizard.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/commands/configure.wizard.ts b/src/commands/configure.wizard.ts index 9eb0db5dc..feb807df6 100644 --- a/src/commands/configure.wizard.ts +++ b/src/commands/configure.wizard.ts @@ -213,9 +213,9 @@ export async function runConfigureWizard( const remoteUrl = baseConfig.gateway?.remote?.url?.trim() ?? ""; const remoteProbe = remoteUrl ? await probeGatewayReachable({ - url: remoteUrl, - token: baseConfig.gateway?.remote?.token, - }) + url: remoteUrl, + token: baseConfig.gateway?.remote?.token, + }) : null; const mode = guardCancel( @@ -351,7 +351,7 @@ export async function runConfigureWizard( } if (selected.includes("hipocap")) { - nextConfig = await setupHipocap(nextConfig, runtime, prompter); + nextConfig = await setupHipocap(nextConfig, prompter); } await persistConfig(); @@ -479,7 +479,7 @@ export async function runConfigureWizard( } if (choice === "hipocap") { - nextConfig = await setupHipocap(nextConfig, runtime, prompter); + nextConfig = await setupHipocap(nextConfig, prompter); await persistConfig(); }