diff --git a/libs/angular/src/services/jslib-services.module.ts b/libs/angular/src/services/jslib-services.module.ts index a74382ad98e..c32aef87f82 100644 --- a/libs/angular/src/services/jslib-services.module.ts +++ b/libs/angular/src/services/jslib-services.module.ts @@ -243,8 +243,9 @@ import { StateEventRunnerService } from "@bitwarden/common/platform/state/state- import { SyncService } from "@bitwarden/common/platform/sync"; // eslint-disable-next-line no-restricted-imports -- Needed for DI import { DefaultSyncService } from "@bitwarden/common/platform/sync/internal"; +// eslint-disable-next-line no-restricted-imports -- Needed for DI +import { UnsupportedSystemNotificationService } from "@bitwarden/common/platform/system-notifications/internal"; import { SystemNotificationServiceAbstraction } from "@bitwarden/common/platform/system-notifications/system-notification-service"; -import { UnsupportedSystemNotificationService } from "@bitwarden/common/platform/system-notifications/unsupported-system-notification.service"; import { DefaultThemeStateService, ThemeStateService, diff --git a/libs/common/src/platform/system-notifications/internal.ts b/libs/common/src/platform/system-notifications/internal.ts new file mode 100644 index 00000000000..66868ab83f3 --- /dev/null +++ b/libs/common/src/platform/system-notifications/internal.ts @@ -0,0 +1 @@ +export { UnsupportedSystemNotificationService } from "./unsupported-system-notification.service";