()
| 40 | }, 0); |
| 41 | |
| 42 | const decreaseQuantity = () => { |
| 43 | if (quantity > 1) { |
| 44 | onQuantityChange(quantity - 1); |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | const increaseQuantity = () => { |
| 49 | if (quantity < 15) { |
nothing calls this directly
no outgoing calls
no test coverage detected