From 97ce5adb8ed24226dec60ce5ecd8cd32793a6f0a Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Sun, 28 Apr 2024 19:49:27 -0400 Subject: [PATCH] fix reorganized exports --- leptos_macro/src/component.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leptos_macro/src/component.rs b/leptos_macro/src/component.rs index aff66974c..3e425e71d 100644 --- a/leptos_macro/src/component.rs +++ b/leptos_macro/src/component.rs @@ -236,7 +236,7 @@ impl ToTokens for Model { let body_name = unmodified_fn_name_from_fn_name(&body_name); let body_expr = if *is_island { quote! { - ::leptos::reactive_graph::Owner::with_hydration(move || { + ::leptos::reactive::Owner::with_hydration(move || { #body_name(#prop_names) }) } @@ -247,7 +247,7 @@ impl ToTokens for Model { }; let component = quote! { - ::leptos::reactive_graph::untrack( + ::leptos::reactive::untrack( move || { #tracing_guard_expr #tracing_props_expr