diff --git a/crates/collab_ui/src/face_pile.rs b/crates/collab_ui/src/face_pile.rs index a2248b3498cf23e9125c3a84b222be90da487abf..fb6c59cc8079073acbb6b481e214b54619f9eea6 100644 --- a/crates/collab_ui/src/face_pile.rs +++ b/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)] diff --git a/crates/ui/src/components/popover.rs b/crates/ui/src/components/popover.rs index 7e881d74c03e200b421ea49019517cb4853592ae..acab1e2087667092f20035740d868604528a3935 100644 --- a/crates/ui/src/components/popover.rs +++ b/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. ///