1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-22 02:21:34 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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";