diff --git a/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts b/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts index 8eac5d638d..c28e030eec 100644 --- a/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts +++ b/ui-ngx/src/app/modules/home/pages/notification/settings/notification-settings.component.ts @@ -67,11 +67,9 @@ export class NotificationSettingsComponent extends PageComponent implements OnIn private getNotificationDeliveryMethods(): NotificationDeliveryMethod[] { const deliveryMethods = new Set([ - NotificationDeliveryMethod.WEB, - NotificationDeliveryMethod.SMS, - NotificationDeliveryMethod.EMAIL + NotificationDeliveryMethod.SLACK ]); - return Object.values(NotificationDeliveryMethod).filter(type => deliveryMethods.has(type)); + return Object.values(NotificationDeliveryMethod).filter(type => !deliveryMethods.has(type)); } private buildNotificationSettingsForm() {