diff --git a/frontend/src/component/admin/users/CreateUser/SeatCostWarning/SeatCostWarning.tsx b/frontend/src/component/admin/users/CreateUser/SeatCostWarning/SeatCostWarning.tsx index e18d5031fa..b973619922 100644 --- a/frontend/src/component/admin/users/CreateUser/SeatCostWarning/SeatCostWarning.tsx +++ b/frontend/src/component/admin/users/CreateUser/SeatCostWarning/SeatCostWarning.tsx @@ -7,7 +7,7 @@ export const SeatCostWarning: VFC = () => { const { users } = useUsers(); const { isBillingUsers, seats, planUsers } = useUsersPlan(users); - if (!isBillingUsers) { + if (!isBillingUsers || planUsers.length < seats) { return null; }