From 10c94cc8b77c14ca61b60538169093844ceb601c Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 7 Nov 2023 11:47:49 -0800 Subject: [PATCH] Remove unused import --- crates/workspace2/src/modal_layer.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/crates/workspace2/src/modal_layer.rs b/crates/workspace2/src/modal_layer.rs index a0b759b1d92f67a987963dcfc0b1a91052007fc2..4121574b6a490867ec1dd612aca0b417cd138b6f 100644 --- a/crates/workspace2/src/modal_layer.rs +++ b/crates/workspace2/src/modal_layer.rs @@ -1,11 +1,8 @@ -use std::{any::TypeId, sync::Arc}; - +use crate::Workspace; use gpui::{ - div, AnyView, AppContext, Component, Div, ParentElement, Render, StatelessInteractive, View, - ViewContext, + div, AnyView, AppContext, Div, ParentElement, Render, StatelessInteractive, View, ViewContext, }; - -use crate::Workspace; +use std::{any::TypeId, sync::Arc}; pub struct ModalRegistry { registered_modals: Vec<(TypeId, Box) -> Div>)>,