agent: Disable update_plan for staff (#52386)

Ben Brandt created

Needs some more work.

Release Notes:

- N/A

Change summary

crates/feature_flags/src/flags.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/feature_flags/src/flags.rs 🔗

@@ -69,7 +69,7 @@ impl FeatureFlag for UpdatePlanToolFeatureFlag {
     const NAME: &'static str = "update-plan-tool";
 
     fn enabled_for_staff() -> bool {
-        true
+        false
     }
 }