Suppress warnings about unused `Scope` variable in components

This commit is contained in:
Greg Johnston 2022-12-19 07:22:25 -05:00
parent 83c8f8b0cb
commit c103c8f05b
1 changed files with 5 additions and 1 deletions

View File

@ -145,7 +145,11 @@ impl ToTokens for Model {
debug_assertions,
::leptos::tracing::instrument(level = "trace", name = #trace_name, skip_all)
)]
#vis fn #name #generics (#scope_name: Scope, props: #props_name #generics) #ret
#vis fn #name #generics (
#[allow(unused_variables)]
#scope_name: Scope,
props: #props_name #generics
) #ret
#where_clause
{
#body