Fix TypeScript compilation errors in configure.wizard.ts

This commit is contained in:
Professor 2026-01-30 17:29:53 +05:30
parent 68825e5477
commit 0d916131f5

View File

@ -351,7 +351,7 @@ export async function runConfigureWizard(
} }
if (selected.includes("hipocap")) { if (selected.includes("hipocap")) {
nextConfig = await setupHipocap(nextConfig, runtime, prompter); nextConfig = await setupHipocap(nextConfig, prompter);
} }
await persistConfig(); await persistConfig();
@ -479,7 +479,7 @@ export async function runConfigureWizard(
} }
if (choice === "hipocap") { if (choice === "hipocap") {
nextConfig = await setupHipocap(nextConfig, runtime, prompter); nextConfig = await setupHipocap(nextConfig, prompter);
await persistConfig(); await persistConfig();
} }