From 644c314587e501d8d1a4c567a64512710bfdd91a Mon Sep 17 00:00:00 2001 From: Kadphol Date: Wed, 29 Jan 2025 18:44:32 +0700 Subject: [PATCH] fix(order): add fulfillment labels query key on create shipment page (#9792) Co-authored-by: Riqwan Thamir --- .../orders/order-create-shipment/order-create-shipment.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/admin/dashboard/src/routes/orders/order-create-shipment/order-create-shipment.tsx b/packages/admin/dashboard/src/routes/orders/order-create-shipment/order-create-shipment.tsx index 16efba729a..47695ff484 100644 --- a/packages/admin/dashboard/src/routes/orders/order-create-shipment/order-create-shipment.tsx +++ b/packages/admin/dashboard/src/routes/orders/order-create-shipment/order-create-shipment.tsx @@ -8,7 +8,7 @@ export function OrderCreateShipment() { const { id, f_id } = useParams() const { order, isLoading, isError, error } = useOrder(id!, { - fields: "*fulfillments,*fulfillments.items", + fields: "*fulfillments,*fulfillments.items,*fulfillments.labels", }) if (isError) {