increase quantity limit in cart
This commit is contained in:
@@ -35,7 +35,7 @@ class CartItem extends Component {
|
||||
}
|
||||
|
||||
isQuantityValid(quantity) {
|
||||
return quantity > 0 && quantity <= 100;
|
||||
return quantity > 0 && quantity <= 65000;
|
||||
}
|
||||
|
||||
updateQuantity(cartItem, quantity) {
|
||||
|
||||
Reference in New Issue
Block a user