Skip to content

Commit

Permalink
Reverted: unwanted semi colon in the details page (hotwax#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Dec 11, 2024
1 parent 2d914e4 commit ebe53c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/OrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ export default defineComponent({
const shipmentIds = order.shipmentIds ? order.shipmentIds : order.shipmentPackages?.reduce((uniqueIds: any[], shipmentPackage: any) => {
if(!uniqueIds.includes(shipmentPackage.shipmentId)) uniqueIds.push(shipmentPackage.shipmentId);
return uniqueIds;
}, []);;
}, []);
const shippingLabelPdfUrls = order.shipmentPackages
?.filter((shipmentPackage: any) => shipmentPackage.labelPdfUrl)
.map((shipmentPackage: any) => shipmentPackage.labelPdfUrl);
Expand Down

0 comments on commit ebe53c6

Please sign in to comment.