diff --git a/web/app/(app)/dashboard/(components)/account-settings.tsx b/web/app/(app)/dashboard/(components)/account-settings.tsx index 5f7dde5..faa968b 100644 --- a/web/app/(app)/dashboard/(components)/account-settings.tsx +++ b/web/app/(app)/dashboard/(components)/account-settings.tsx @@ -253,12 +253,12 @@ export default function AccountSettings() {

- Next Payment + Start Date

- {currentSubscription?.currentPeriodEnd + {currentSubscription?.subscriptionStartDate ? new Date( - currentSubscription?.currentPeriodEnd + currentSubscription?.subscriptionStartDate ).toLocaleDateString('en-US', { month: 'long', day: 'numeric', @@ -270,18 +270,31 @@ export default function AccountSettings() {

- +
-

Quota

+

+ Next Payment +

- {currentSubscription?.plan?.quota} + {currentSubscription?.currentPeriodEnd + ? new Date( + currentSubscription?.currentPeriodEnd + ).toLocaleDateString('en-US', { + month: 'long', + day: 'numeric', + year: 'numeric', + }) + : '-:-'}

-
-
-
+
+

+ Usage Limits +

+
+

Daily

@@ -305,7 +318,7 @@ export default function AccountSettings() { )}

-
+

Monthly

@@ -322,14 +335,14 @@ export default function AccountSettings() { -

Unlimited (within monthly limit)

+

Unlimited (within fair usage)

)}

-
+

Bulk

{currentSubscription?.plan?.bulkSendLimit === -1 @@ -355,7 +368,7 @@ export default function AccountSettings() {

-
+
{currentSubscription?.plan?.name?.toLowerCase() === 'free' ? ( Manage Subscription →