Browse Source

Clean up

pull/3670/head
Thomas Kaul 1 year ago
parent
commit
f94949f16d
  1. 3
      apps/client/src/app/components/user-account-membership/user-account-membership.component.ts
  2. 3
      apps/client/src/app/pages/pricing/pricing-page.component.ts

3
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) => { .subscribe((result) => {
if (result.error) { if (result.error) {
this.notificationService.alert({ this.notificationService.alert({
title: result.error.type, title: result.error.message
message: result.error.message
}); });
} }
}); });

3
apps/client/src/app/pages/pricing/pricing-page.component.ts

@ -94,8 +94,7 @@ export class PricingPageComponent implements OnDestroy, OnInit {
.subscribe((result) => { .subscribe((result) => {
if (result.error) { if (result.error) {
this.notificationService.alert({ this.notificationService.alert({
title: result.error.type, title: result.error.message
message: result.error.message
}); });
} }
}); });

Loading…
Cancel
Save