From 500c67f749d08ebd1956d6cd2a8552ceef02a78e Mon Sep 17 00:00:00 2001 From: Dylan Hurd Date: Mon, 9 Mar 2026 13:37:29 -0700 Subject: [PATCH] codex: fix CI failure on PR #14122 Co-authored-by: Codex --- codex-rs/core/src/config/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/codex-rs/core/src/config/mod.rs b/codex-rs/core/src/config/mod.rs index 2b71b34487..3567f6c104 100644 --- a/codex-rs/core/src/config/mod.rs +++ b/codex-rs/core/src/config/mod.rs @@ -2878,7 +2878,6 @@ pub(crate) fn default_permissions_profile_name(config: &Config) -> Option() .ok() .and_then(|selection| selection.default_permissions) @@ -2888,7 +2887,6 @@ pub(crate) fn next_default_permissions_profile_name(config: &Config) -> String { let permissions = config .config_layer_stack .effective_config() - .clone() .try_into::() .ok() .and_then(|config_toml| config_toml.permissions) @@ -2920,7 +2918,6 @@ pub(crate) async fn persist_granted_permission_profile( let existing = config .config_layer_stack .effective_config() - .clone() .try_into::() .ok() .and_then(|config_toml| config_toml.permissions)