chore: <Form/> component Removed unused variables. (#640)

This commit is contained in:
martin frances 2023-03-07 19:04:55 +00:00 committed by GitHub
parent a13468228a
commit c66b673067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,7 +453,7 @@ where
fn from_event(
ev: &web_sys::Event,
) -> Result<Self, serde_urlencoded::de::Error> {
let (form, method, action, enctype) = extract_form_attributes(&ev);
let (form, _, _, _) = extract_form_attributes(ev);
let form_data = web_sys::FormData::new_with_form(&form).unwrap_throw();