Skip to content

Commit 1923ee8

Browse files
Syntax fix
1 parent 0f2c7c9 commit 1923ee8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

services/notifications.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,12 @@ class NotificationService {
6262
*/
6363
sendNotifications() {
6464
if (!this.notificationEnabled) {
65-
console.log(this.notificationEnabled);
6665
return
6766
}
6867
if (this.notificationType === 'success' && this.notifyOnSuccess === 'false') {
6968
return
7069
}
71-
if (this.notificationType === 'error' && this.notifyOnError == 'false') {
70+
if (this.notificationType === 'error' && this.notifyOnError === 'false') {
7271
return
7372
}
7473
const services = this.getSupportedServices()

0 commit comments

Comments
 (0)