Skip to content
Nutrition Facts
|
|
Serving Size |
1 Bar (43g) |
Amount Per Serving Calories |
25 |
|
% Daily Value* |
Total Fat 0g
|
0% |
Saturated Fat 0g
|
0% |
Trans Fat 0g
|
0% |
Cholesterol 0mg
|
0% |
Sodium 0mg
|
0% |
Total Carbohydrate 6g
|
2% |
Dietary Fiber 0g
|
0% |
Total Sugars 5g
|
|
Includes 0g Added Sugars |
0% |
Protein 0g
|
|
Vitamin D 0mcg
|
0% |
Calcium 3mg
|
0% |
Iron 0mg
|
0% |
Potassium 40mg
|
0% |
{
const itemCountInCart = $store.cart.data
.items.filter(i => i.variant_id == product)
.reduce((total, item) => total + (item.quantity || 0), 0);
if (!itemCountInCart) {
$store.cart.addCartItem(product, 1);
}
else if (itemCountInCart > 1) {
$store.cart.updateCartItem(product, 1); // Never more than one.
}
})
"
>