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

Fixed incorrect toast messages on favorite (#17238)

This commit is contained in:
SmithThe4th
2025-11-05 17:06:52 -05:00
committed by GitHub
parent b13f1e6dcf
commit aabee1b827

View File

@@ -291,7 +291,7 @@ export class ItemMoreOptionsComponent {
this.toastService.showToast({
variant: "success",
message: this.i18nService.t(
this.cipher.favorite ? "itemAddedToFavorites" : "itemRemovedFromFavorites",
cipher.favorite ? "itemAddedToFavorites" : "itemRemovedFromFavorites",
),
});
}