Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions lib/codex-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -5297,7 +5293,7 @@ export async function runCodexMultiAuthCli(rawArgs: string[]): Promise<number> {
return runCheckCommand({ runHealthCheck });
}
if (command === "features") {
return runFeaturesReport();
return runFeaturesCommand({ implementedFeatures: IMPLEMENTED_FEATURES });
}
if (command === "verify-flagged") {
return runVerifyFlagged(rest);
Expand Down