From 5c7325ad9a4eb4e78a53327c011d6d25f49bd129 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 14 Apr 2026 09:27:06 -0400 Subject: [PATCH] title_bar: Don't show a badge for organizations without a plan (#53841) This PR makes it so we don't show a plan badge for organizations that don't have a plan. Closes CLO-654. Release Notes: - N/A --- crates/title_bar/src/title_bar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/title_bar/src/title_bar.rs b/crates/title_bar/src/title_bar.rs index 12469441600d7c49f83c53f4130d22db0711d2b3..e427d5aa7bba2fe682aa548ddf9ced141c6d5478 100644 --- a/crates/title_bar/src/title_bar.rs +++ b/crates/title_bar/src/title_bar.rs @@ -1180,7 +1180,7 @@ impl TitleBar { ) }), ) - .child(PlanChip::new(plan.unwrap_or(Plan::ZedFree))) + .children(plan.map(|plan| PlanChip::new(plan))) .into_any_element() } },