We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e58594 commit f23f122Copy full SHA for f23f122
web/src/app/profile/components/subscription-section.tsx
@@ -24,6 +24,7 @@ interface SubscriptionApiResponse {
24
cancelAtPeriodEnd: boolean
25
canceledAt: string | null
26
tier?: number | null
27
+ scheduledTier?: number | null
28
}
29
rateLimit?: {
30
limited: boolean
@@ -123,6 +124,11 @@ function SubscriptionActive({
123
124
Canceling
125
</span>
126
)}
127
+ {subscription?.scheduledTier != null && (
128
+ <span className="inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium bg-muted text-muted-foreground">
129
+ Renewing at ${subscription.scheduledTier}/mo
130
+ </span>
131
+ )}
132
</CardTitle>
133
<a
134
href={billingPortalUrl}
0 commit comments