fix: typo in `ChorusError::MfaRequired` `Display` message

This commit is contained in:
xystrive 2024-07-05 17:04:05 +01:00
parent 8f995a9f63
commit c3c506bc1b
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ custom_error! {
/// Invalid, insufficient or too many arguments provided. /// Invalid, insufficient or too many arguments provided.
InvalidArguments{error: String} = "Invalid arguments were provided. Error: {error}", InvalidArguments{error: String} = "Invalid arguments were provided. Error: {error}",
/// The request requires MFA verification /// The request requires MFA verification
MfaRequired {error: MfaRequiredSchema} = "Mfa verification required to perform this action" MfaRequired {error: MfaRequiredSchema} = "Mfa verification is required to perform this action"
} }
impl From<reqwest::Error> for ChorusError { impl From<reqwest::Error> for ChorusError {