Skip to content

Commit

Permalink
fix: add comments to trigger versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
kieckhafer authored Jan 24, 2019
1 parent 20523b2 commit 07ea43c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions package/src/components/CartSummary/v1/CartSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class CartSummary extends Component {
isFreeShipping
} = this.props;

// Use "-" to indicate we are still calculating this field.
const shipping = (isFreeShipping ? "FREE" : displayShipping) || "-";
const tax = displayTax || "-";
const header = !isDense && this.renderHeader();
Expand Down

0 comments on commit 07ea43c

Please sign in to comment.