We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 670e136 commit 848f06bCopy full SHA for 848f06b
sample-apps/bundles-cart-transform/extensions/cart-merge-expand_rust/src/main.rs
@@ -175,6 +175,7 @@ fn get_expand_cart_operations(cart: &Cart) -> impl Iterator<Item = CartOperation
175
.map(|(reference, &quantity)| ExpandedItem {
176
merchandise_id: reference,
177
quantity,
178
+ price: None,
179
})
180
.collect();
181
@@ -184,6 +185,8 @@ fn get_expand_cart_operations(cart: &Cart) -> impl Iterator<Item = CartOperation
184
185
cart_line_id: line.id.clone(),
186
expanded_cart_items: expand_relationships,
187
price,
188
+ image: None,
189
+ title: None,
190
191
.into()
192
}
0 commit comments