diff --git a/.jules/palette.md b/.jules/palette.md new file mode 100644 index 0000000..f36d77e --- /dev/null +++ b/.jules/palette.md @@ -0,0 +1 @@ +## 2026-05-02 - Missing aria-labels on icon-only buttons\n**Learning:** In Next.js applications using shadcn/ui ` @@ -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" >