diff --git a/apps/client/src/app/components/user-account-membership/user-account-membership.component.ts b/apps/client/src/app/components/user-account-membership/user-account-membership.component.ts index 83bf635d3..e21a85418 100644 --- a/apps/client/src/app/components/user-account-membership/user-account-membership.component.ts +++ b/apps/client/src/app/components/user-account-membership/user-account-membership.component.ts @@ -108,8 +108,7 @@ export class UserAccountMembershipComponent implements OnDestroy, OnInit { .subscribe((result) => { if (result.error) { this.notificationService.alert({ - title: result.error.type, - message: result.error.message + title: result.error.message }); } }); diff --git a/apps/client/src/app/pages/pricing/pricing-page.component.ts b/apps/client/src/app/pages/pricing/pricing-page.component.ts index 453756078..b366f3d63 100644 --- a/apps/client/src/app/pages/pricing/pricing-page.component.ts +++ b/apps/client/src/app/pages/pricing/pricing-page.component.ts @@ -94,8 +94,7 @@ export class PricingPageComponent implements OnDestroy, OnInit { .subscribe((result) => { if (result.error) { this.notificationService.alert({ - title: result.error.type, - message: result.error.message + title: result.error.message }); } });