diff --git a/components/arcade/prizes.js b/components/arcade/prizes.js
index 3da73a24..e1d089bf 100644
--- a/components/arcade/prizes.js
+++ b/components/arcade/prizes.js
@@ -20,6 +20,7 @@ const Prizes = ({
index,
hoursBalance = null,
stock,
+ inStock = true,
...props
}) => {
const parsedFulfillmentDesc = fulfillmentDescription?.replace(
@@ -36,7 +37,7 @@ const Prizes = ({
return (
- {stock && stock != null && stock > 0 && stock <= 100 && (
+ {inStock && stock != null && stock > 0 && stock <= 100 && (
+ {inStock && (
-
+
+ >
You can order up to {quantity} of these
@@ -119,10 +122,10 @@ const Prizes = ({
// only show the quantity dropdown if you have enough hours to buy at least 2 of the item
(hoursBalance ? hoursBalance / cost < 2 : null) ? null : (
)
}
@@ -130,15 +133,15 @@ const Prizes = ({
// only show the buy button if you have enough hours to buy at least 1 of the item
(hoursBalance ? hoursBalance / cost < 1 : null) ? null : (
@@ -147,6 +150,7 @@ const Prizes = ({
)}
+ )}
- {cost} {link ? '🎟️' : cost == 1 ? 'ticket' : 'tickets'}
+ {cost} 🎟️
- {
document.getElementById(`${parsedFullName}-info`).showModal()
}}
- >
+ >
📦
+ )}