From 57dd5aae99fa440690ff0021c62150749431ea0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Houl=C3=A9?= Date: Thu, 28 May 2026 10:00:06 +0200 Subject: [PATCH] agent_ui: Remove the staff-only gate on fast mode toggle This releases fast mode to everyone. Will cherry pick to preview. --- crates/agent_ui/src/conversation_view/thread_view.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/agent_ui/src/conversation_view/thread_view.rs b/crates/agent_ui/src/conversation_view/thread_view.rs index 5fabb8f4569..1921eb5cd99 100644 --- a/crates/agent_ui/src/conversation_view/thread_view.rs +++ b/crates/agent_ui/src/conversation_view/thread_view.rs @@ -4190,9 +4190,6 @@ impl ThreadView { } fn fast_mode_available(&self, cx: &Context) -> bool { - if !cx.is_staff() { - return false; - } self.as_native_thread(cx) .and_then(|thread| thread.read(cx).model()) .map(|model| model.supports_fast_mode())