mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 14:17:02 +00:00
Remove unused import
This commit is contained in:
parent
a3bd04fed2
commit
10c94cc8b7
1 changed files with 4 additions and 7 deletions
|
@ -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>>)>,
|
||||
|
|
Loading…
Reference in a new issue