Unused imports

Nate Butler created

Change summary

crates/command_palette2/src/command_palette.rs | 2 +-
crates/ui2/src/components/keybinding.rs        | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/command_palette2/src/command_palette.rs 🔗

@@ -1,7 +1,7 @@
 use collections::{CommandPaletteFilter, HashMap};
 use fuzzy::{StringMatch, StringMatchCandidate};
 use gpui::{
-    actions, rems, Action, AppContext, DismissEvent, Div, EventEmitter, FocusHandle, FocusableView,
+    actions, Action, AppContext, DismissEvent, Div, EventEmitter, FocusHandle, FocusableView,
     Keystroke, ParentElement, Render, Styled, View, ViewContext, VisualContext, WeakView,
 };
 use picker::{Picker, PickerDelegate};

crates/ui2/src/components/keybinding.rs 🔗

@@ -115,7 +115,7 @@ pub struct KeyIcon {
 impl RenderOnce for KeyIcon {
     type Rendered = Div;
 
-    fn render(self, cx: &mut WindowContext) -> Self::Rendered {
+    fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
         div()
             .w(rems(14. / 16.))
             .child(IconElement::new(self.icon).size(IconSize::Small))