From 1e75173ebd4ebf5928f1cdcf37ceab1585cabafc Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Thu, 12 Feb 2026 23:35:57 -0800 Subject: [PATCH] Point Codex App tooltip links to app landing page (#11515) ### Motivation - Ensure the in-TUI Codex App call-to-action opens the app landing page variant `https://chatgpt.com/codex?app-landing-page=true` so users reach the intended landing experience. ### Description - Update tooltip constants in `codex-rs/tui/src/tooltips.rs` to replace `https://chatgpt.com/codex` with `https://chatgpt.com/codex?app-landing-page=true` for the PAID and OTHER tooltip variants. ### Testing - Ran `just fmt` in `codex-rs` and `cargo test -p codex-tui`, and the test suite completed successfully. ------ [Codex Task](https://chatgpt.com/codex/tasks/task_i_698d20cf6f088329bb82b07d3ce76e61) --- codex-rs/tui/src/tooltips.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/codex-rs/tui/src/tooltips.rs b/codex-rs/tui/src/tooltips.rs index a9dbd82e2..0600bd416 100644 --- a/codex-rs/tui/src/tooltips.rs +++ b/codex-rs/tui/src/tooltips.rs @@ -8,10 +8,9 @@ const ANNOUNCEMENT_TIP_URL: &str = const IS_MACOS: bool = cfg!(target_os = "macos"); -const PAID_TOOLTIP: &str = "*New* Try the **Codex App** with 2x rate limits until *April 2nd*. Run 'codex app' or visit https://chatgpt.com/codex"; +const PAID_TOOLTIP: &str = "*New* Try the **Codex App** with 2x rate limits until *April 2nd*. Run 'codex app' or visit https://chatgpt.com/codex?app-landing-page=true"; const PAID_TOOLTIP_NON_MAC: &str = "*New* 2x rate limits until *April 2nd*."; -const OTHER_TOOLTIP: &str = - "*New* Build faster with the **Codex App**. Run 'codex app' or visit https://chatgpt.com/codex"; +const OTHER_TOOLTIP: &str = "*New* Build faster with the **Codex App**. Run 'codex app' or visit https://chatgpt.com/codex?app-landing-page=true"; const OTHER_TOOLTIP_NON_MAC: &str = "*New* Build faster with Codex."; const FREE_GO_TOOLTIP: &str = "*New* Codex is included in your plan for free through *March 2nd* – let’s build together.";