Applying change to sales tax, not subtotal

This commit is contained in:
Michaela Brydon 2024-03-19 11:05:51 -04:00
parent d5a087694d
commit a2d33d413c

View file

@ -83,13 +83,13 @@
id="cart-subtotal"
class="col d-flex justify-content-between">
<span id="subtotal-label">{{ subtotalLabel }}</span>
<span id="subtotal-value">{{ formatAmountInDollars(subTotal) }}</span>
<span id="subtotal-value">{{ getDisplayed(subTotal) }}</span>
</div>
<div
id="cart-sales-tax"
class="pt-1 col d-flex justify-content-between">
<span id="sales-tax-label">{{ salesTaxLabel }}</span>
<span id="sales-tax-value">{{ getDisplayed(salesTax) }}</span>
<span id="sales-tax-value">{{ formatAmountInDollars(salesTax) }}</span>
</div>
</div>
<div