fix(model-gateway): rustfmt nightly in conversations/handlers.rs (#25947)

This commit is contained in:
ybyang
2026-05-20 23:29:51 -07:00
committed by GitHub
parent c4f14650b9
commit b5b9c809e1
@@ -83,7 +83,7 @@ fn internal_error(message: impl Into<String>) -> Response {
}
fn bad_request_structured(error_obj: Value) -> Response {
(StatusCode::BAD_REQUEST, Json(json!({"error": error_obj}))).into_response()
(StatusCode::BAD_REQUEST, Json(json!({ "error": error_obj }))).into_response()
}
// ============================================================================