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

@@ -47,7 +47,7 @@ impl AuthDataRx {
// Save token to session storage
self.username.set(Some(auth_info.username.clone()));
self.remember_me.set(Some(auth_info.remember_me.clone()));
self.remember_me.set(Some(auth_info.remember_me));
self.auth_info.set(Some(auth_info));
self.state.set(LoginState::Authenticated);
}