diff --git a/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx b/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx index 0d5aebf2ad..4eb560ff0f 100644 --- a/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx +++ b/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx @@ -386,8 +386,8 @@ const Item = ({ }) => { const { t } = useTranslation() const isInventoryManaged = item.variant?.manage_inventory - - const hasInventoryKit = (item.variant.inventory_items?.length || 0) > 1 + const hasInventoryKit = + isInventoryManaged && (item.variant?.inventory_items?.length || 0) > 1 return ( <>