fix reorganized exports

This commit is contained in:
Greg Johnston 2024-04-28 19:49:27 -04:00
parent 20fb5454b0
commit 97ce5adb8e
1 changed files with 2 additions and 2 deletions

View File

@ -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