1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

Fix(ExtensionAccountSwitcherComponent): [Auth/PM-11684] Fix missing typography import (#13544)

This commit is contained in:
Jared Snider
2025-02-28 10:46:16 -05:00
committed by GitHub
parent f12e8ed583
commit a3f692ee59
2 changed files with 3 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
<ng-container *ngIf="enableAccountSwitching">
<bit-section-header *ngIf="isFirst">
<h2 bitTypography="h6" class="tw-font-semibold">{{ "availableAccounts" | i18n }}</h2>
<h2 bitTypography="h6">{{ "availableAccounts" | i18n }}</h2>
</bit-section-header>
<div *ngIf="!availableAccount.isActive">

View File

@@ -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 {