mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
chore: <Form/>
component Removed unused variables. (#640)
This commit is contained in:
parent
a13468228a
commit
c66b673067
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue