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())