Remove reset after login error
All checks were successful
Build Crate / build (push) Successful in 16m5s

This commit is contained in:
2024-08-29 00:37:24 -04:00
parent 893a9b5a06
commit 8714f65a0f

View File

@@ -117,7 +117,6 @@ fn login_form_capsule<G: Html>(
if response.status() != StatusCode::OK {
let response = response.json::<GenericResponse>().await.unwrap();
state.error.set(response.status.to_string());
state.reset();
return;
}