diff --git a/crates/assistant/src/assistant_panel.rs b/crates/assistant/src/assistant_panel.rs index 9f554a7e27fd11ee979b760ee4ce326a7a0606ef..35d5a31d96bb8798d2bac85576e8ad7424c0d014 100644 --- a/crates/assistant/src/assistant_panel.rs +++ b/crates/assistant/src/assistant_panel.rs @@ -4340,7 +4340,7 @@ impl ContextEditor { fn render_payment_required_error(&self, cx: &mut ViewContext) -> AnyElement { const ERROR_MESSAGE: &str = "Free tier exceeded. Subscribe and add payment to continue using Zed LLMs. You'll be billed at cost for tokens used."; - const SUBSCRIBE_URL: &str = "https://zed.dev/api/billing/initiate_checkout"; + const ACCOUNT_URL: &str = "https://zed.dev/account"; v_flex() .gap_0p5() @@ -4365,7 +4365,7 @@ impl ContextEditor { .child(Button::new("subscribe", "Subscribe").on_click(cx.listener( |this, _, cx| { this.last_error = None; - cx.open_url(SUBSCRIBE_URL); + cx.open_url(ACCOUNT_URL); cx.notify(); }, )))