2
0
Fork 0
mirror of https://github.com/DioxusLabs/dioxus synced 2025-02-19 07:08:26 +00:00

Clean up some bits

This commit is contained in:
Jonathan Kelley 2024-01-11 17:36:00 -08:00
parent 3f15612c8e
commit e801007698
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE
2 changed files with 1 additions and 3 deletions
packages
core/tests
rsx/src

View file

@ -250,9 +250,7 @@ fn create_random_element(cx: DepthProps) -> Element {
)
.into_boxed_str(),
));
println!("{template:#?}");
let node = cx.vnode(
None.into(),
None,
template,
dynamic_node_types

View file

@ -146,7 +146,7 @@ impl ToTokens for ElementAttrNamed {
ElementAttrName::Custom(_) => todo!(),
},
_ => {
quote! { dioxus_elements::events::#value(__cx, #value) }
quote! { dioxus_elements::events::#value(#value) }
}
}
};