From 50f7ba753e9676b4ad43b4245ade6611f2ea6ea7 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Fri, 13 Feb 2026 11:51:49 -0300 Subject: [PATCH] Turn `subagents` flag to false (#49104) Accidentally committed the feature flag change in https://github.com/zed-industries/zed/pull/49100 as I had it turned to true for local testing. This PR makes it turned off to staff again, sorry! Release Notes: - N/A --- crates/feature_flags/src/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/feature_flags/src/flags.rs b/crates/feature_flags/src/flags.rs index 5a52ee1f7186c080702ac2c7589cd9d4e383e159..b94264879deb87b2880ef0d62ecf08489dfa8655 100644 --- a/crates/feature_flags/src/flags.rs +++ b/crates/feature_flags/src/flags.rs @@ -40,7 +40,7 @@ impl FeatureFlag for SubagentsFeatureFlag { const NAME: &'static str = "subagents"; fn enabled_for_staff() -> bool { - true + false } }