Skip to content

Commit

Permalink
chore(notifications): do not send emails
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleSamtoshi committed Feb 19, 2024
1 parent 5cc1373 commit 32b9f41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/notifications/src/notification_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ impl NotificationEvent for IdentityVerificationApproved {
}

fn should_send_email(&self) -> bool {
true
false
}
}

Expand Down Expand Up @@ -230,7 +230,7 @@ impl NotificationEvent for IdentityVerificationDeclined {
}

fn should_send_email(&self) -> bool {
true
false
}
}

Expand Down Expand Up @@ -263,7 +263,7 @@ impl NotificationEvent for IdentityVerificationReviewPending {
}

fn should_send_email(&self) -> bool {
true
false
}
}

Expand Down

0 comments on commit 32b9f41

Please sign in to comment.