1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-02 16:43:19 +00:00

[PM-23086] fix My Items collection name (#15366)

* fix My Items collection name

* clean up
This commit is contained in:
Brandon Treston
2025-06-27 11:49:58 -04:00
committed by GitHub
parent 62750a06ec
commit 652f673a3c
2 changed files with 4 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ export class OrganizationUserService {
): Observable<void> {
const encryptedCollectionName$ = this.orgKey$(organization).pipe(
switchMap((orgKey) =>
this.encryptService.encryptString(this.i18nService.t("My Itmes"), orgKey),
this.encryptService.encryptString(this.i18nService.t("myItems"), orgKey),
),
);