1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-25 00:53:22 +00:00

fix(notification-processing): [PM-19877] System Notification Implementation - Renamed noop server notifications service.

This commit is contained in:
Patrick Pimentel
2025-07-23 15:56:34 -04:00
parent 2ca7383114
commit 43ce345f8a
3 changed files with 4 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ import { ServerNotificationsService } from "@bitwarden/common/platform/notificat
// eslint-disable-next-line no-restricted-imports -- Needed for service creation
import {
DefaultServerNotificationsService,
NoopNotificationsService,
UnsupportedServerNotificationsService,
SignalRConnectionService,
UnsupportedWebPushConnectionService,
WebPushConnectionService,
@@ -954,7 +954,7 @@ const safeProviders: SafeProvider[] = [
safeProvider({
provide: ServerNotificationsService,
useClass: devFlagEnabled("noopNotifications")
? NoopNotificationsService
? UnsupportedServerNotificationsService
: DefaultServerNotificationsService,
deps: [
LogService,