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 c28e030eec..aada799885 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,7 +67,8 @@ export class NotificationSettingsComponent extends PageComponent implements OnIn private getNotificationDeliveryMethods(): NotificationDeliveryMethod[] { const deliveryMethods = new Set([ - NotificationDeliveryMethod.SLACK + NotificationDeliveryMethod.SLACK, + NotificationDeliveryMethod.MICROSOFT_TEAMS ]); return Object.values(NotificationDeliveryMethod).filter(type => !deliveryMethods.has(type)); }