Skip to content

Commit

Permalink
fix: eliminate lint issues in MiniCartSummary
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer Norman <spencern@gmail.com>
  • Loading branch information
spencern committed Nov 27, 2019
1 parent 1ee2a57 commit a6b108b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package/src/components/MiniCartSummary/v1/MiniCartSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ class MiniCartSummary extends Component {
* The computed taxes for items in the cart.
*/
displayTax: PropTypes.string,
/**
* The text for the "Tax" label text.
*/
taxLabelText: PropTypes.string,
/**
* The text for the "Subtotal" label text.
*/
subtotalLabelText: PropTypes.string,
/**
* The text for the "Tax" label text.
*/
taxLabelText: PropTypes.string
};

static defaultProps = {
taxLabelText: "Tax",
subtotalLabelText: "Subtotal",
subtotalLabelText: "Subtotal"
}

renderTax = () => {
Expand Down

0 comments on commit a6b108b

Please sign in to comment.