fix bug with sell quantity
This commit is contained in:
parent
5e2ec81d0c
commit
81acf736b1
@ -643,7 +643,7 @@ document.getElementById("addressForm").onsubmit = function (e) {
|
||||
const items = cart.map((item) => ({
|
||||
id: item.name,
|
||||
quantity: item.qty,
|
||||
sellQuantity: getItemSellQuantity(item.name),
|
||||
sellQuantity: item.quantity,
|
||||
}));
|
||||
const request = {
|
||||
userId: user.username,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user