Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

Commit

Permalink
[#155003820] Fixed basket subtotal typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
otarza committed Apr 11, 2018
1 parent 92f7f89 commit 16e8f29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import BasketTotal from '../BasketTotal';

const BasketSummary = ({ total, currency, count, className }) => (
<p className={className}>
<strong> Basket subtotal </strong>
<strong> Basket subtotal: </strong>
{
count &&
<span>
{' '}({count} <FormattedPlural value={count} one="item" other="items" />)
</span>
}
: <strong className="text-danger">
<strong className="text-danger">
<BasketTotal total={total} currentCurrency={currency} />
</strong>
</p >
Expand Down

0 comments on commit 16e8f29

Please sign in to comment.