We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40946dc + acc8ee9 commit 8afbbc8Copy full SHA for 8afbbc8
src/modules/layout/components/cart-dropdown/index.tsx
@@ -20,9 +20,9 @@ const CartDropdown = () => {
20
return (
21
<div className="h-full z-50" onMouseEnter={open} onMouseLeave={close}>
22
<Popover className="relative h-full">
23
- <Link href="/cart" passHref>
24
- <Popover.Button className="h-full">{`My Bag (${totalItems})`}</Popover.Button>
25
- </Link>
+ <Popover.Button className="h-full">
+ <Link href="/cart">{`My Bag (${totalItems})`}</Link>
+ </Popover.Button>
26
<Transition
27
show={state}
28
as={Fragment}
0 commit comments