Skip to content

Commit 454fc6a

Browse files
authored
Update billing management text (#6258)
1 parent 72c3499 commit 454fc6a

File tree

1 file changed

+6
-2
lines changed
  • apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/billing/components

1 file changed

+6
-2
lines changed

apps/dashboard/src/app/team/[team_slug]/(team)/~/settings/billing/components/PlanInfoCard.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,14 @@ export function PlanInfoCard(props: {
3636
<div className="rounded-lg border border-border bg-card">
3737
<div className="flex flex-col gap-4 p-4 lg:flex-row lg:items-center lg:justify-between lg:p-6">
3838
<div>
39-
<div className="flex items-center gap-2">
39+
<div className="flex flex-col items-start gap-2">
4040
<h3 className="font-semibold text-2xl capitalize tracking-tight">
4141
{validPlan} Plan
4242
</h3>
43+
<p className="text-sm">
44+
Go to "Manage Billing" to view your invoices, update your payment
45+
method, or edit your billing details.
46+
</p>
4347
{trialEndsInFuture && <Badge>Trial</Badge>}
4448
</div>
4549
{trialEndsAfterDays > 0 && (
@@ -53,7 +57,7 @@ export function PlanInfoCard(props: {
5357
{/* manage team billing */}
5458
<BillingPortalButton
5559
teamSlug={team.slug}
56-
variant="outline"
60+
variant="primary"
5761
redirectPath={`/team/${team.slug}/~/settings/billing`}
5862
redirectToBillingPortal={props.redirectToBillingPortal}
5963
>

0 commit comments

Comments
 (0)