Heads up! You are exceeding your allocated free members included in your plan ({planUsers.length} of {seats}). - Creating this user will add{' '} - ${BILLING_PRO_USER_PRICE}/month to your - invoice, starting with your next payment. + Creating this user will add ${seatPrice}/month{' '} + to your invoice, starting with your next payment.
); diff --git a/frontend/src/component/demo/DemoDialog/DemoDialogPlans/DemoDialogPlans.tsx b/frontend/src/component/demo/DemoDialog/DemoDialogPlans/DemoDialogPlans.tsx index 6728914ea5..9c517720e4 100644 --- a/frontend/src/component/demo/DemoDialog/DemoDialogPlans/DemoDialogPlans.tsx +++ b/frontend/src/component/demo/DemoDialog/DemoDialogPlans/DemoDialogPlans.tsx @@ -6,11 +6,10 @@ import { usePlausibleTracker } from 'hooks/usePlausibleTracker'; import { useUiFlag } from 'hooks/useUiFlag'; import { BILLING_PAYG_DEFAULT_MINIMUM_SEATS, - BILLING_PAYG_USER_PRICE, - BILLING_PLAN_PRICES, + BILLING_PAYG_SEAT_PRICE, + BILLING_PRO_BASE_PRICE, BILLING_PRO_DEFAULT_INCLUDED_SEATS, } from 'component/admin/billing/BillingDashboard/BillingPlan/BillingPlan'; -import { InstancePlan } from 'interfaces/instance'; const StyledDemoDialog = styled(DemoDialog)(({ theme }) => ({ '& .MuiDialog-paper': { @@ -139,7 +138,7 @@ export const DemoDialogPlans = ({ open, onClose }: IDemoDialogPlansProps) => {