diff --git a/dim-web/src/error.rs b/dim-web/src/error.rs index 8f0c87fa..bb342a29 100644 --- a/dim-web/src/error.rs +++ b/dim-web/src/error.rs @@ -49,7 +49,7 @@ impl IntoResponse for DimErrorWrapper { let resp = serde_json::json!({ "error": serde_json::json!(&self.0)["error"], - "messsage": self.0.to_string(), + "message": self.0.to_string(), }); (status, serde_json::to_string(&resp).unwrap()).into_response() }