1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Fix i18n import of drawer component (#12932)

Resolves main being broken after merging #12831 due to a new component depending on `I18nPipe`.
This commit is contained in:
Oscar Hinton
2025-01-17 17:01:23 +01:00
committed by GitHub
parent 23227f5064
commit 83802fcdc5

View File

@@ -1,8 +1,9 @@
import { CommonModule } from "@angular/common";
import { ChangeDetectionStrategy, Component, HostBinding, input } from "@angular/core";
import { I18nPipe } from "@bitwarden/ui-common";
import { IconButtonModule } from "../icon-button";
import { I18nPipe } from "../shared/i18n.pipe";
import { TypographyModule } from "../typography";
import { DrawerCloseDirective } from "./drawer-close.directive";