feat: remove lifetime check

This commit is contained in:
Nevo David 2025-02-04 23:47:40 +07:00
parent 1ffcb5c545
commit 2a542657a0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export class SubscriptionService {
customerId
))!;
if (getCurrentSubscription.isLifetime) {
if (!getCurrentSubscription || getCurrentSubscription?.isLifetime) {
return false;
}