fix: doctor memory hint

This commit is contained in:
Peter Steinberger
2026-01-06 06:01:11 +00:00
parent f29efb9862
commit 7d896b5f67
6 changed files with 93 additions and 18 deletions

View File

@@ -386,20 +386,6 @@ export async function runOnboardingWizard(
});
return String(code);
},
onManualCodeInput: isRemote
? () => {
if (!manualCodePromise) {
manualCodePromise = prompter
.text({
message: "Paste the redirect URL (or authorization code)",
validate: (value) =>
value?.trim() ? undefined : "Required",
})
.then((value) => String(value));
}
return manualCodePromise;
}
: undefined,
onProgress: (msg) => spin.update(msg),
});
spin.stop("OpenAI OAuth complete");