1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 20:50:28 +00:00

Fix empty toast message when owner deletes himself

This commit is contained in:
JaredScar
2026-01-27 13:24:09 -05:00
parent 6c880ea2ad
commit 14de7f54bf

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;