diff --git a/src/components/store/AddCartButton/index.tsx b/src/components/store/AddCartButton/index.tsx index c7ab6497..db9da80c 100644 --- a/src/components/store/AddCartButton/index.tsx +++ b/src/components/store/AddCartButton/index.tsx @@ -25,7 +25,7 @@ const AddCartButton = ({ }: AddCartButtonProps) => { const myID = useId(); - const maxCanBuy = Math.min(lifetimeRemaining, monthlyRemaining); + const maxCanBuy = Math.min(20, Math.min(lifetimeRemaining, monthlyRemaining)); const validText = inStock ? (
This item is in stock.