Index: src/stock-adjustment-mobile/add-products-page/add-product-page.jsx =================================================================== diff -u -N -r0d6dec097051407a3b7af5a60226106f618bd236 -r2401e8d934ea536ac6154e067b28798973d58ce9 --- src/stock-adjustment-mobile/add-products-page/add-product-page.jsx (.../add-product-page.jsx) (revision 0d6dec097051407a3b7af5a60226106f618bd236) +++ src/stock-adjustment-mobile/add-products-page/add-product-page.jsx (.../add-product-page.jsx) (revision 2401e8d934ea536ac6154e067b28798973d58ce9) @@ -56,8 +56,10 @@ return getStockOnHand(orderable, lotCode); }, items: (productVal, itemsVal) => { - let newItemsVal = Object.assign({}, itemsVal); + let newItemsVal = itemsVal; + console.log(newItemsVal); if (newItemsVal.items[0].hasOwnProperty('lot')) { + console.log('removed lot'); newItemsVal.items[0] = removeProperty('lot', newItemsVal.items[0]); } return newItemsVal.items;