Fix more clippy warnings
All checks were successful
Build Crate / build (push) Successful in 1m45s

This commit is contained in:
2024-08-28 23:54:56 -04:00
parent aca0b83dd4
commit d6e62b98aa
5 changed files with 23 additions and 15 deletions

View File

@@ -95,7 +95,7 @@ fn login_form_capsule<G: Html>(
#[cfg(client)]
{
spawn_local_scoped(cx, async move {
let remember_me = state.remember_me.get().as_ref().clone();
let remember_me = *state.remember_me.get().as_ref();
let username = state.username.get().as_ref().clone();
let login_info = LoginInfo {
username: username.clone(),