fix outputting rsx with a manual location

This commit is contained in:
Evan Almloff 2024-01-31 12:22:56 -06:00
parent b403bb51a8
commit 913ed0cfe3

View file

@ -85,9 +85,7 @@ impl CallBody {
};
quote! {
dioxus_core::LazyNodes::new( move | __cx: &dioxus_core::ScopeState| -> dioxus_core::VNode {
#body
})
#body
}
}
}
@ -119,9 +117,7 @@ impl ToTokens for CallBody {
};
out_tokens.append_all(quote! {
dioxus_core::LazyNodes::new( move | __cx: &dioxus_core::ScopeState| -> dioxus_core::VNode {
#body
})
#body
})
}
}