1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

Fix empty toast message when owner deletes himself (#18603)

This commit is contained in:
Jared
2026-01-27 15:51:46 -05:00
committed by GitHub
parent 7b583aa0ec
commit af2d3c945b

View File

@@ -514,7 +514,7 @@ export class vNextMembersComponent {
if (result.error != null) {
this.toastService.showToast({
variant: "error",
message: this.i18nService.t(result.error),
message: result.error,
});
this.logService.error(result.error);
return;