Compare commits

...

2 Commits

Author SHA1 Message Date
Dhruv
b217182998 Update rate limit spend cap copy 2026-05-21 21:46:57 -04:00
Dhruv
21843e55c5 Use member usage-limit beacon copy in CLI 2026-05-21 18:56:36 -04:00

View File

@@ -389,7 +389,7 @@ impl ChatWidget {
}
Some(RateLimitReachedType::WorkspaceOwnerUsageLimitReached) => {
self.on_error(
"Usage limit reached. You've reached your usage limit. Increase your limits to continue using codex."
"You have hit your spend cap in your workspace. Increase your spend cap to continue."
.to_string(),
);
}
@@ -398,7 +398,10 @@ impl ChatWidget {
self.open_workspace_owner_nudge_prompt(AddCreditsNudgeCreditType::Credits);
}
Some(RateLimitReachedType::WorkspaceMemberUsageLimitReached) => {
self.on_error(message);
self.on_error(
"You have hit your spend cap in your workspace. Ask an owner to increase your spend cap to continue."
.to_string(),
);
self.open_workspace_owner_nudge_prompt(AddCreditsNudgeCreditType::UsageLimit);
}
Some(RateLimitReachedType::RateLimitReached) | None => {