From da6c18310bc07df30da61ee843d15dc0d1a8695c Mon Sep 17 00:00:00 2001
From: isra el Quota
- {currentSubscription?.quota}
+ {currentSubscription?.plan?.quota}
- {currentSubscription?.dailyLimit === -1
+ {currentSubscription?.plan?.dailyLimit === -1
? 'Unlimited'
- : currentSubscription?.dailyLimit}
- {currentSubscription?.dailyLimit === -1 && (
+ : currentSubscription?.plan?.dailyLimit}
+ {currentSubscription?.plan?.dailyLimit === -1 && (
- {currentSubscription?.monthlyLimit === -1
+ {currentSubscription?.plan?.monthlyLimit === -1
? 'Unlimited'
- : currentSubscription?.monthlyLimit.toLocaleString()}
- {currentSubscription?.monthlyLimit === -1 && (
+ : currentSubscription?.plan?.monthlyLimit?.toLocaleString()}
+ {currentSubscription?.plan?.monthlyLimit === -1 && (
Bulk
- {currentSubscription?.bulkSendLimit === -1
+ {currentSubscription?.plan?.bulkSendLimit === -1
? 'Unlimited'
- : currentSubscription?.bulkSendLimit}
- {currentSubscription?.bulkSendLimit === -1 && (
+ : currentSubscription?.plan?.bulkSendLimit}
+ {currentSubscription?.plan?.bulkSendLimit === -1 && (