I am using the Navigate theme and I believe the side-cart should be showing up. However, it is redirecting me to the cart page as well.
Any ideas how to solve this?
<form action="/cart/add" method="post" class="product-form" id="add-to-cart">
<div class="add-to-cart-form"></div>
<input type="hidden" name="id" value="{{ product.variants.first.id }}" />
<select min="1" max="5" type="number" id="quantity" name="quantity" value="1">
{% for i in (1..5) %}
<option value="{{ i }}">{{ i }}</option>
{% endfor %}
</select>
<div>
<button type="submit" class="btn--secondary" onclick="addItem('add-to-cart'); return false;" name="add">Añadir</button>
</div>
</form>