fix(types): add missed default type

This commit is contained in:
oxalica 2024-10-05 02:41:16 -04:00
parent 97c0cf5844
commit c611396331

View file

@ -18,7 +18,7 @@ pub struct ErrorResponse<S = String> {
/// The response object of `/_blah/user/me` endpoint on HTTP error status.
/// It contains additional registration information.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ErrorResponseWithChallenge<S> {
pub struct ErrorResponseWithChallenge<S = String> {
/// The error object.
pub error: ErrorObject<S>,