Skip to content

Commit

Permalink
fix: seat count in self checkout price preview (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-chaturvedi authored Nov 26, 2024
1 parent 05efcb1 commit 58bab75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/settings/organisation/UpsellDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const UpsellDialog = ({
activeOrganisation.plan === ApiOrganisationPlanChoices.Pr ? (
<UpgradeRequestForm onSuccess={() => {}} />
) : (
ProUpgradeDialog && <ProUpgradeDialog userCount={data.organisationPlan.userCount} />
ProUpgradeDialog && <ProUpgradeDialog userCount={data.organisationPlan.seatsUsed.total} />
)
) : (
<div className="text-zinc-900 dark:text-zinc-100">
Expand Down

0 comments on commit 58bab75

Please sign in to comment.