diff --git a/components/arcade/prizes.js b/components/arcade/prizes.js
index ea7ae30b..fc3c6892 100644
--- a/components/arcade/prizes.js
+++ b/components/arcade/prizes.js
@@ -19,7 +19,7 @@ const Prizes = ({
onQuantityChange,
index,
hoursBalance,
- Stock,
+ stock,
...props
}) => {
const parsedFulfillmentDesc = fulfillmentDescription?.replace(
@@ -64,7 +64,7 @@ const Prizes = ({
alt={text}
/>
- {Stock && Stock != null && Stock > 0 && Stock <= 100 && (
+ {stock && stock != null && stock > 0 && stock <= 100 && (
- Only {Stock} left!
+ Only {stock} left!
)}
handleQuantityChange(item.id, q)} // Pass handler to update quantity
hoursBalance={hoursBalance}
- Stock={item['Stock']}
+ stock={item['Stock']}
/>
))}