Skip to content

Commit

Permalink
fix: use accounts instead of users for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
nimish-ks committed Dec 15, 2024
1 parent 537a577 commit ee47cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/ee/billing/ProUpgradeDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const ProUpgradeDialog = (props: { userCount: number; onSuccess: () => void }) =
<div className="flex items-start justify-between">
<div className="text-zinc-900 dark:text-zinc-100">
<span className="font-extralight text-7xl">${price.monthlyPrice}</span>
<span className="text-neutral-500">/mo per user</span>
<span className="text-neutral-500">/mo per account</span>
</div>
<div>
<div className="text-neutral-500 text-xs uppercase font-medium">Billed</div>
Expand All @@ -94,7 +94,7 @@ const ProUpgradeDialog = (props: { userCount: number; onSuccess: () => void }) =
<span>${price.unitPrice}</span>
</div>
<div className="flex justify-between text-zinc-900 dark:text-zinc-100">
<span>Number of Users:</span>
<span>Number of Accounts:</span>
<span>{props.userCount}</span>
</div>
<hr className="my-2 border-zinc-300 dark:border-zinc-600" />
Expand Down

0 comments on commit ee47cf7

Please sign in to comment.