Commit 9148032f authored by Kyle Muldoon's avatar Kyle Muldoon

All done

parent ec73ed49
...@@ -27,7 +27,7 @@ export default function CartItem(props) { ...@@ -27,7 +27,7 @@ export default function CartItem(props) {
value={props.quantity} value={props.quantity}
min="1" min="1"
max="99" max="99"
onChange={(e) => {props.handleQuantityUpdate(props.productInfo.sku, e.target.value)}} onChange={(e) => {props.handleQuantityUpdate(props.productInfo.sku, parseInt( e.target.value) )}}
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment