Remove the ability to book onboarding (#31404)

Closes: https://github.com/zed-industries/zed/issues/31394

Onboarding has been valuable, but we're moving into a new phase as our
user base grows, and our ability to chat with everyone who books a call
will not scale linearly. For now, we are removing the option to book a
call from the application.

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2025-05-26 08:02:51 -04:00 committed by GitHub
parent 998542b048
commit e78b726ed8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 29 deletions

View file

@ -29,7 +29,6 @@ actions!(welcome, [ResetHints]);
pub const FIRST_OPEN: &str = "first_open";
pub const DOCS_URL: &str = "https://zed.dev/docs/";
const BOOK_ONBOARDING: &str = "https://dub.sh/zed-c-onboarding";
pub fn init(cx: &mut App) {
BaseKeymap::register(cx);
@ -254,16 +253,6 @@ impl Render for WelcomePage {
), cx);
})),
)
.child(
Button::new("book-onboarding", "Book Onboarding")
.icon(IconName::PhoneIncoming)
.icon_size(IconSize::XSmall)
.icon_color(Color::Muted)
.icon_position(IconPosition::Start)
.on_click(cx.listener(|_, _, _, cx| {
cx.open_url(BOOK_ONBOARDING);
})),
),
),
)
.child(