Skip to content

Commit

Permalink
Fix inexhaustive match
Browse files Browse the repository at this point in the history
  • Loading branch information
tjmw committed Jan 30, 2025
1 parent 71dc02e commit 704617d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ object IdentityErrorResponse {
this match {
case EmailProviderRejected(_) => EmailProviderRejected(Some(e))
case InvalidEmailAddress(_) => InvalidEmailAddress(Some(e))
case EmailAddressAlreadyTaken(_) => EmailAddressAlreadyTaken(Some(e))
case OtherIdentityError(m, d, _endpoint) => OtherIdentityError(m, d, endpoint = Some(e))
}
}
Expand Down

0 comments on commit 704617d

Please sign in to comment.