Remove debug from derive Component proc macro

This commit is contained in:
Marshall Bowers 2023-10-26 15:22:38 +02:00
parent 88ef74ec8f
commit 42095f0673

View file

@ -36,10 +36,6 @@ pub fn derive_component(input: TokenStream) -> TokenStream {
}
};
if name == "AssistantPanelStory" {
println!("Expanded tokens: {}", expanded.to_string());
}
TokenStream::from(expanded)
}