From 936e1f19c82ee97064d1b9fe6ac89ff4070274ae Mon Sep 17 00:00:00 2001 From: Lucas Colombo Date: Tue, 17 Sep 2024 16:44:27 -0300 Subject: [PATCH] =?UTF-8?q?fix(cli):=20=F0=9F=9A=91=20wrong=20import=20in?= =?UTF-8?q?=20children=20and=20components=20macros?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/cli/tui/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/tui/mod.rs b/lib/cli/tui/mod.rs index b212e35..f62cfae 100644 --- a/lib/cli/tui/mod.rs +++ b/lib/cli/tui/mod.rs @@ -16,7 +16,7 @@ macro_rules! components { $( temp_vec.push( Box::new($x) - as Box + as Box ); )* temp_vec @@ -32,7 +32,7 @@ macro_rules! children { $( map.insert( $name.to_string(), - Box::new($value) as Box + Box::new($value) as Box ); )* map