Fix cart removal

This commit is contained in:
Luis Alvarez
2020-10-07 12:56:51 -05:00
parent 63e8f431d8
commit 80614a1df0
4 changed files with 11 additions and 12 deletions

View File

@@ -42,7 +42,7 @@ const CartSidebarView: FC = () => {
</header>
{isEmpty ? (
<div className="flex-shrink-0 px-4 border-t border-gray-200 py-5 sm:px-6">
<div className="flex-shrink-0 px-4 border-gray-200 py-5 sm:px-6">
<Button>Continue Shopping</Button>
</div>
) : (

View File

@@ -25,9 +25,11 @@ const UserNav: FC<Props> = ({ className }) => {
<ul className={s.list}>
<li className={s.item} onClick={() => openSidebar()}>
<Bag />
<span className="bg-black h-4 w-4 absolute rounded-full inset-3 text-white flex items-center justify-center font-bold text-xs">
{itemsCount}
</span>
{itemsCount > 0 && (
<span className="bg-black h-4 w-4 absolute rounded-full inset-3 text-white flex items-center justify-center font-bold text-xs">
{itemsCount}
</span>
)}
</li>
<li className={s.item}>
<Heart />