Fix 782 - inline props should use cx token

This commit is contained in:
Jonathan Kelley 2023-01-17 15:50:04 -08:00
parent ae1a618aa8
commit 07447fd756

View file

@ -158,7 +158,7 @@ impl ToTokens for InlinePropsBody {
#maybe_async #vis fn #ident #fn_generics (#cx_token: Scope<#scope_lifetime #struct_name #generics>) #output
#where_clause
{
let #struct_name { #(#field_names),* } = &cx.props;
let #struct_name { #(#field_names),* } = &#cx_token.props;
#block
}
});