diff --git a/client-wiaas/src/containers/cart/components/CartItem.jsx b/client-wiaas/src/containers/cart/components/CartItem.jsx index a36633e..77b3286 100644 --- a/client-wiaas/src/containers/cart/components/CartItem.jsx +++ b/client-wiaas/src/containers/cart/components/CartItem.jsx @@ -34,7 +34,7 @@ class CartItem extends Component { } isQuantityValid(quantity) { - return quantity > 0 && quantity <= 100; + return quantity > 0 && quantity <= 65000; } updateQuantity(cartItem, quantity) {