diff --git a/crates/agent_ui/src/conversation_view/thread_view.rs b/crates/agent_ui/src/conversation_view/thread_view.rs index 3eec4c93ff0..8d0b0d46a7b 100644 --- a/crates/agent_ui/src/conversation_view/thread_view.rs +++ b/crates/agent_ui/src/conversation_view/thread_view.rs @@ -4183,9 +4183,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())