App reviews, troubleshooting, and recommendations
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
var lineItemPayload = {
price: 20,
quantity: 1,
title: 'Bab Low - Blue Jay',
properties: [{ name: 'test', value: 'random properties' }]
}
var unsubscriber = cart.subscribe(Cart.Action.UPDATE, function (payload) {
console.log('[Client] addLineItem', payload);
unsubscriber();
});
cart.dispatch(Cart.Action.ADD_LINE_ITEM, {
data: lineItemPayload
});