diff --git a/packages/admin/dashboard/src/routes/price-lists/common/components/price-list-customer-group-rule-form/price-list-customer-group-rule-form.tsx b/packages/admin/dashboard/src/routes/price-lists/common/components/price-list-customer-group-rule-form/price-list-customer-group-rule-form.tsx index 89ac742325..7819de8405 100644 --- a/packages/admin/dashboard/src/routes/price-lists/common/components/price-list-customer-group-rule-form/price-list-customer-group-rule-form.tsx +++ b/packages/admin/dashboard/src/routes/price-lists/common/components/price-list-customer-group-rule-form/price-list-customer-group-rule-form.tsx @@ -59,9 +59,12 @@ export const PriceListCustomerGroupRuleForm = ({ prefix: PREFIX, }) const { customer_groups, count, isLoading, isError, error } = - useCustomerGroups(searchParams, { - placeholderData: keepPreviousData, - }) + useCustomerGroups( + { ...searchParams, fields: "customers.id" }, + { + placeholderData: keepPreviousData, + } + ) const updater: OnChangeFn = (value) => { const state = typeof value === "function" ? value(rowSelection) : value