chore: remove unnecessary default_ prefix (#1854)

This prefix is not inline with the other fields on the `ConfigOverrides`
struct.
This commit is contained in:
Michael Bolin
2025-08-05 14:42:49 -07:00
committed by GitHub
parent d365cae077
commit 42bd73e150
5 changed files with 14 additions and 14 deletions

View File

@@ -147,8 +147,8 @@ pub async fn run_main(cli: Cli, codex_linux_sandbox_exe: Option<PathBuf>) -> any
codex_linux_sandbox_exe,
base_instructions: None,
include_plan_tool: None,
default_disable_response_storage: oss.then_some(true),
default_show_raw_agent_reasoning: oss.then_some(true),
disable_response_storage: oss.then_some(true),
show_raw_agent_reasoning: oss.then_some(true),
};
// Parse `-c` overrides.
let cli_kv_overrides = match config_overrides.parse_overrides() {