From a3f692ee59dcf0480c8bee244a24e9498d01ed4f Mon Sep 17 00:00:00 2001 From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Date: Fri, 28 Feb 2025 10:46:16 -0500 Subject: [PATCH] Fix(ExtensionAccountSwitcherComponent): [Auth/PM-11684] Fix missing typography import (#13544) --- .../popup/account-switching/account-switcher.component.html | 2 +- .../auth/popup/account-switching/account-switcher.component.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html index 0152cd1c7ff..de8ab4c7b08 100644 --- a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html +++ b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html @@ -15,7 +15,7 @@ -

{{ "availableAccounts" | i18n }}

+

{{ "availableAccounts" | i18n }}

diff --git a/apps/browser/src/auth/popup/account-switching/account-switcher.component.ts b/apps/browser/src/auth/popup/account-switching/account-switcher.component.ts index 19490642278..78bee121afb 100644 --- a/apps/browser/src/auth/popup/account-switching/account-switcher.component.ts +++ b/apps/browser/src/auth/popup/account-switching/account-switcher.component.ts @@ -21,6 +21,7 @@ import { ItemModule, SectionComponent, SectionHeaderComponent, + TypographyModule, } from "@bitwarden/components"; import { enableAccountSwitching } from "../../../platform/flags"; @@ -48,6 +49,7 @@ import { AccountSwitcherService } from "./services/account-switcher.service"; AccountComponent, SectionComponent, SectionHeaderComponent, + TypographyModule, ], }) export class AccountSwitcherComponent implements OnInit, OnDestroy {