Remove unused import

This commit is contained in:
Max Brunsfeld 2023-11-07 11:47:49 -08:00
parent a3bd04fed2
commit 10c94cc8b7

View file

@ -1,11 +1,8 @@
use std::{any::TypeId, sync::Arc};
use gpui::{
div, AnyView, AppContext, Component, Div, ParentElement, Render, StatelessInteractive, View,
ViewContext,
};
use crate::Workspace;
use gpui::{
div, AnyView, AppContext, Div, ParentElement, Render, StatelessInteractive, View, ViewContext,
};
use std::{any::TypeId, sync::Arc};
pub struct ModalRegistry {
registered_modals: Vec<(TypeId, Box<dyn Fn(Div<Workspace>) -> Div<Workspace>>)>,