Thank you for the reply, I have already found a way to get the order and shipping details in the checkout page through
let api = useSubtotalAmount();
const Amount = api.amount;
const deliveryGroups = useDeliveryGroups();
console.log(deliveryGroups);
const {
selectedDeliveryOption,
targetedCartLines,
} = useDeliveryGroup(deliveryGroups[0]);
But I’m stuck in getting the shipping settings by the shop owner in the checkout UI extension, Basically I want to get these settings (in the image ) details in my checkout UI extension. How can I get it?
