diff --git a/crates/picker/src/picker.rs b/crates/picker/src/picker.rs index ee1eaf3bc9..33d6e84241 100644 --- a/crates/picker/src/picker.rs +++ b/crates/picker/src/picker.rs @@ -45,10 +45,10 @@ pub trait PickerDelegate: Sized + 'static { fn center_selection_after_match_updates(&self) -> bool { false } - fn render_header(&self, cx: &AppContext) -> Option>> { + fn render_header(&self, _cx: &AppContext) -> Option>> { None } - fn render_footer(&self, cx: &AppContext) -> Option>> { + fn render_footer(&self, _cx: &AppContext) -> Option>> { None } }