Skip to content

Commit f357bc2

Browse files
fix: line item should be string[]
1 parent f97b8fe commit f357bc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/admin-ui/ui/src/domain/orders/details/create-fulfillment

packages/admin-ui/ui/src/domain/orders/details/create-fulfillment/item-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const FulfillmentLine = ({
8888
const { reservations, isLoading: isReservationsLoading } =
8989
useAdminReservations({
9090
location_id: locationId,
91-
line_item_id: item.id,
91+
line_item_id: [item.id],
9292
})
9393

9494
const isLoading = isInventoryLoading || isReservationsLoading

0 commit comments

Comments
 (0)