diff --git a/Cargo.lock b/Cargo.lock index 863fccfae..ad47dfd8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2047,7 +2047,7 @@ dependencies = [ [[package]] name = "leptos_macro" -version = "0.8.13" +version = "0.8.14" dependencies = [ "attribute-derive", "cfg-if", diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index c26b985f2..3b515a236 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_macro" -version = "0.8.13" +version = "0.8.14" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" diff --git a/leptos_macro/src/view/component_builder.rs b/leptos_macro/src/view/component_builder.rs index b887855da..32311a1d4 100644 --- a/leptos_macro/src/view/component_builder.rs +++ b/leptos_macro/src/view/component_builder.rs @@ -177,7 +177,7 @@ pub(crate) fn component_to_tokens( if cfg!(feature = "__internal_erase_components") { quote! { .add_any_attr({ - vec![#(::leptos::html::attribute::any_attribute::IntoAnyAttribute::into_any_attr(#spreads),)*] + vec![#(::leptos::attr::any_attribute::IntoAnyAttribute::into_any_attr(#spreads),)*] }) } } else {