fmt: fix error in formatting

This commit is contained in:
silver 2023-07-30 05:17:26 +01:00
parent f5b4431214
commit 48eb7edee1

View file

@ -37,7 +37,6 @@ pub async fn post_new_account(mut req: Request<State>) -> tide::Result {
};
if let Some(error) = is_valid_name(&user) {
return Ok(json!({"result": "error", "error": error}).into());
}