cargo fmt

Max Brunsfeld created

Change summary

crates/collab_ui/src/face_pile.rs   | 4 +---
crates/ui/src/components/popover.rs | 7 +++----
2 files changed, 4 insertions(+), 7 deletions(-)

Detailed changes

crates/collab_ui/src/face_pile.rs 🔗

@@ -1,6 +1,4 @@
-use gpui::{
-    div, AnyElement, IntoElement, ParentElement, RenderOnce, Styled, WindowContext,
-};
+use gpui::{div, AnyElement, IntoElement, ParentElement, RenderOnce, Styled, WindowContext};
 use smallvec::SmallVec;
 
 #[derive(Default, IntoElement)]

crates/ui/src/components/popover.rs 🔗

@@ -1,10 +1,9 @@
+use crate::prelude::*;
+use crate::v_stack;
 use gpui::{
-    div, AnyElement, Element, IntoElement, ParentElement, RenderOnce, Styled,
-    WindowContext,
+    div, AnyElement, Element, IntoElement, ParentElement, RenderOnce, Styled, WindowContext,
 };
 use smallvec::SmallVec;
-use crate::prelude::*;
-use crate::v_stack;
 
 /// A popover is used to display a menu or show some options.
 ///