Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use accounts instead of users for better clarity #417

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading