diff --git a/lib/codex-manager.ts b/lib/codex-manager.ts index af128432..26d0ccbe 100644 --- a/lib/codex-manager.ts +++ b/lib/codex-manager.ts @@ -434,10 +434,6 @@ const IMPLEMENTED_FEATURES: ImplementedFeature[] = [ { id: 41, name: "Auto-switch to best account command" }, ]; -function runFeaturesReport(): number { - return runFeaturesCommand({ implementedFeatures: IMPLEMENTED_FEATURES }); -} - function resolveActiveIndex( storage: AccountStorageV3, family: ModelFamily = "codex", @@ -5297,7 +5293,7 @@ export async function runCodexMultiAuthCli(rawArgs: string[]): Promise { return runCheckCommand({ runHealthCheck }); } if (command === "features") { - return runFeaturesReport(); + return runFeaturesCommand({ implementedFeatures: IMPLEMENTED_FEATURES }); } if (command === "verify-flagged") { return runVerifyFlagged(rest);