chore: clippy suggestions

This commit is contained in:
Per Stark
2025-03-31 12:35:46 +02:00
parent 56a2e1d801
commit 42798788a5
8 changed files with 32 additions and 28 deletions
+2 -2
View File
@@ -31,9 +31,9 @@ pub async fn show_signin_form(
true => Ok(TemplateResponse::new_partial(
"auth/signin_form.html",
"body",
{},
(),
)),
false => Ok(TemplateResponse::new_template("auth/signin_form.html", {})),
false => Ok(TemplateResponse::new_template("auth/signin_form.html", ())),
}
}