diff --git a/crates/assistant2/src/assistant_configuration/tool_picker.rs b/crates/assistant2/src/assistant_configuration/tool_picker.rs index d6c4df40acf0def5f36bb0eea2378878afd35811..f9429b36f22e63bf8b9e53ffd4d17c37c59d576a 100644 --- a/crates/assistant2/src/assistant_configuration/tool_picker.rs +++ b/crates/assistant2/src/assistant_configuration/tool_picker.rs @@ -19,7 +19,7 @@ pub struct ToolPicker { impl ToolPicker { pub fn new(delegate: ToolPickerDelegate, window: &mut Window, cx: &mut Context) -> Self { - let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx)); + let picker = cx.new(|cx| Picker::uniform_list(delegate, window, cx).modal(false)); Self { picker } } }