From 33eb7361f0016786d5a8940f51a373cf6c6f6a61 Mon Sep 17 00:00:00 2001 From: Derek Nance Date: Thu, 15 Jan 2026 09:48:53 -0600 Subject: [PATCH] fix ToastContainerComponent import lint --- apps/desktop/src/app/app.module.ts | 4 ++-- libs/components/src/toast/index.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/app/app.module.ts b/apps/desktop/src/app/app.module.ts index 0d87b6db989..24e4e3994f9 100644 --- a/apps/desktop/src/app/app.module.ts +++ b/apps/desktop/src/app/app.module.ts @@ -9,7 +9,7 @@ import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { ColorPasswordCountPipe } from "@bitwarden/angular/pipes/color-password-count.pipe"; import { ColorPasswordPipe } from "@bitwarden/angular/pipes/color-password.pipe"; import { PremiumUpgradePromptService } from "@bitwarden/common/vault/abstractions/premium-upgrade-prompt.service"; -import { CalloutModule, DialogModule } from "@bitwarden/components"; +import { CalloutModule, DialogModule, ToastContainerComponent } from "@bitwarden/components"; import { AssignCollectionsComponent } from "@bitwarden/vault"; import { DeleteAccountComponent } from "../auth/delete-account.component"; @@ -28,7 +28,6 @@ import { HeaderComponent } from "./layout/header.component"; import { NavComponent } from "./layout/nav.component"; import { SearchComponent } from "./layout/search/search.component"; import { SharedModule } from "./shared/shared.module"; -import { ToastContainerComponent } from "libs/components/src/toast/toast-container.component"; @NgModule({ imports: [ @@ -44,6 +43,7 @@ import { ToastContainerComponent } from "libs/components/src/toast/toast-contain NavComponent, AssignCollectionsComponent, VaultV2Component, + ToastContainerComponent, ], declarations: [ AccountSwitcherComponent, diff --git a/libs/components/src/toast/index.ts b/libs/components/src/toast/index.ts index 5afed111c0f..4336c99c833 100644 --- a/libs/components/src/toast/index.ts +++ b/libs/components/src/toast/index.ts @@ -1,3 +1,4 @@ export * from "./toast.module"; export * from "./toast.service"; +export * from "./toast-container.component"; export type { ToastVariant } from "./toast.component";