From 21843e55c50c9d24d5e49c028399cf87df59fd72 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Thu, 21 May 2026 15:00:41 -0400 Subject: [PATCH] Use member usage-limit beacon copy in CLI --- codex-rs/tui/src/chatwidget/turn_runtime.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codex-rs/tui/src/chatwidget/turn_runtime.rs b/codex-rs/tui/src/chatwidget/turn_runtime.rs index 4868d6a25c..9f7503fad7 100644 --- a/codex-rs/tui/src/chatwidget/turn_runtime.rs +++ b/codex-rs/tui/src/chatwidget/turn_runtime.rs @@ -398,7 +398,9 @@ impl ChatWidget { self.open_workspace_owner_nudge_prompt(AddCreditsNudgeCreditType::Credits); } Some(RateLimitReachedType::WorkspaceMemberUsageLimitReached) => { - self.on_error(message); + self.on_error( + "Request a limit increase from your owner to continue using codex.".to_string(), + ); self.open_workspace_owner_nudge_prompt(AddCreditsNudgeCreditType::UsageLimit); } Some(RateLimitReachedType::RateLimitReached) | None => {