summaryrefslogtreecommitdiff
path: root/engine/src/ui/view
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/ui/view')
-rw-r--r--engine/src/ui/view/world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/ui/view/world.rs b/engine/src/ui/view/world.rs
index 9803328..8552ec1 100644
--- a/engine/src/ui/view/world.rs
+++ b/engine/src/ui/view/world.rs
@@ -410,7 +410,7 @@ fn enter_add_component_popup_state(
let popup_name = format!("Add component to {ent_title}");
let mut searchable_components = world
- .query::<(&ComponentInfo,), ()>()
+ .query::<(&ComponentInfo,)>()
.iter_with_euids()
.map(|(id, (component_info,))| {
let user_creatable = if component_info.type_reflection.is_none() {