diff --git a/components/features/cart-drawer.tsx b/components/features/cart-drawer.tsx index 475a691..47da108 100644 --- a/components/features/cart-drawer.tsx +++ b/components/features/cart-drawer.tsx @@ -117,6 +117,7 @@ export function CartDrawer() { size="icon" className="h-7 w-7 rounded-none" onClick={() => updateQuantity(item.id, item.size, item.quantity - 1, item.color, item.comboGroupId)} + aria-label="Decrease quantity" > @@ -126,6 +127,7 @@ export function CartDrawer() { size="icon" className="h-7 w-7 rounded-none" onClick={() => updateQuantity(item.id, item.size, item.quantity + 1, item.color, item.comboGroupId)} + aria-label="Increase quantity" > @@ -136,6 +138,7 @@ export function CartDrawer() { size="icon" className="h-7 w-7 self-start text-muted-foreground hover:text-foreground" onClick={() => removeItem(item.id, item.size, item.color, item.comboGroupId)} + aria-label="Remove item" >