diff --git a/frontend/src/containers/cart/components/CartIcon.jsx b/frontend/src/containers/cart/components/CartIcon.jsx index 85b8266..c98b4a6 100644 --- a/frontend/src/containers/cart/components/CartIcon.jsx +++ b/frontend/src/containers/cart/components/CartIcon.jsx @@ -7,7 +7,7 @@ class CartIcon extends Component { return ( - {cartCount} + {cartCount >= 1 && ' * ' } ); }