fix labels

This commit is contained in:
Sol Irvine 2023-11-13 20:42:33 +09:00
parent c0eb19cce1
commit c102cc9d3f
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ export function InlineAddToCart({
return ( return (
<button <button
aria-label="Add item to cart" aria-label="Add to cart"
disabled={isPending || !availableForSale || !selectedVariantId} disabled={isPending || !availableForSale || !selectedVariantId}
title={title} title={title}
onClick={() => { onClick={() => {

View File

@ -35,7 +35,7 @@ export function PromotedCartItem({
return product ? ( return product ? (
<button <button
aria-label="Add item to cart" aria-label="Add to cart"
disabled={isPending || !availableForSale || !selectedVariantId} disabled={isPending || !availableForSale || !selectedVariantId}
title={title} title={title}
onClick={() => { onClick={() => {