Skip to content

Commit af7996b

Browse files
committed
Fix line length violation
1 parent b314170 commit af7996b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

WooCommerce/Classes/ViewRelated/Orders/Order Details/Shipping Labels/Create Shipping Label Form/Package Details/Multi-package/ShippingLabelPackageItemViewModel.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ final class ShippingLabelPackageItemViewModel: ObservableObject {
7979
/// Set value for total weight and observe its changes.
8080
///
8181
private func configureTotalWeight(initialTotalWeight: String, products: [Product], productVariations: [ProductVariation]) {
82-
let calculatedWeight = calculateTotalWeight(products: products, productVariations: productVariations, customPackage: packageListViewModel.selectedCustomPackage)
82+
let calculatedWeight = calculateTotalWeight(products: products,
83+
productVariations: productVariations,
84+
customPackage: packageListViewModel.selectedCustomPackage)
8385

8486
// Set total weight to initialTotalWeight if it's different from the calculated weight.
8587
// Otherwise use the calculated weight.

0 commit comments

Comments
 (0)