fix(cli): 🚑 wrong import in children and components macros

This commit is contained in:
Lucas Colombo 2024-09-17 16:44:27 -03:00
parent e7a6d91c1f
commit 936e1f19c8
Signed by: lucas
GPG Key ID: EF34786CFEFFAE35

View File

@ -16,7 +16,7 @@ macro_rules! components {
$(
temp_vec.push(
Box::new($x)
as Box<dyn tui::framework::component::Component $( $t + )* >
as Box<dyn lool::cli::tui::framework::component::Component $( $t + )* >
);
)*
temp_vec
@ -32,7 +32,7 @@ macro_rules! children {
$(
map.insert(
$name.to_string(),
Box::new($value) as Box<dyn tui::framework::component::Component>
Box::new($value) as Box<dyn lool::cli::tui::framework::component::Component>
);
)*
map