Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
fix: rollback shipping method name change
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomontalbano committed Jul 23, 2024
1 parent fad71cf commit 6621aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/components/OrderSummary/SummaryRows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const SummaryRows: React.FC<{ order: Order; editable: boolean }> = ({
)

return renderTotalRow({
label: order.shipments?.[0]?.shipping_method?.name ?? 'Shipping method',
label: 'Shipping method',
value:
canEditShipments && !hasInvalidShipments ? (
<>
Expand Down

0 comments on commit 6621aff

Please sign in to comment.