Skip to content

Commit 670e136

Browse files
committed
Adding new expand fields
1 parent ac557b2 commit 670e136

File tree

1 file changed

+3
-0
lines changed
  • checkout/rust/cart-transform/bundles/src

1 file changed

+3
-0
lines changed

checkout/rust/cart-transform/bundles/src/run.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ fn get_expand_cart_operations(cart: &Cart) -> impl Iterator<Item = CartOperation
168168
.map(|(reference, &quantity)| ExpandedItem {
169169
merchandise_id: reference,
170170
quantity,
171+
price: None,
171172
})
172173
.collect();
173174

@@ -177,6 +178,8 @@ fn get_expand_cart_operations(cart: &Cart) -> impl Iterator<Item = CartOperation
177178
cart_line_id: line.id.clone(),
178179
expanded_cart_items: expand_relationships,
179180
price,
181+
image: None,
182+
title: None,
180183
})
181184
.into()
182185
}

0 commit comments

Comments
 (0)