diff --git a/bizmatch/src/app/pages/subscription/account/account.component.ts b/bizmatch/src/app/pages/subscription/account/account.component.ts index 3e88b06..0654b10 100644 --- a/bizmatch/src/app/pages/subscription/account/account.component.ts +++ b/bizmatch/src/app/pages/subscription/account/account.component.ts @@ -132,6 +132,9 @@ export class AccountComponent { } async synchronizeSubscriptions(subscriptions: StripeSubscription[]) { let changed = false; + if (this.isAdmin()) { + return; + } if (this.subscriptions.length === 0) { if (!this.user.subscriptionPlan) { this.router.navigate(['pricing']);