Skip to content

Commit

Permalink
Fix(ExtensionAccountSwitcherComponent): [Auth/PM-11684] Fix missing t…
Browse files Browse the repository at this point in the history
…ypography import (#13544)
  • Loading branch information
JaredSnider-Bitwarden authored Feb 28, 2025
1 parent f12e8ed commit a3f692e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
ItemModule,
SectionComponent,
SectionHeaderComponent,
TypographyModule,
} from "@bitwarden/components";

import { enableAccountSwitching } from "../../../platform/flags";
Expand Down Expand Up @@ -48,6 +49,7 @@ import { AccountSwitcherService } from "./services/account-switcher.service";
AccountComponent,
SectionComponent,
SectionHeaderComponent,
TypographyModule,
],
})
export class AccountSwitcherComponent implements OnInit, OnDestroy {
Expand Down

0 comments on commit a3f692e

Please sign in to comment.