+
{card.tier?.name} Scratch Card
{card.winningNumbers.map((num, i) => (
-
+
{num}
))}
@@ -38,7 +38,7 @@ const Card: React.FC
= ({ card, setCard, setMoney, setGubblePoints, u
))}
-
Scratch each field one at a time. Winnings: 1-2 = 50%, 3-4 = 80%, 5-6 = 120% of card price.
+
Scratch each field one at a time. Winnings: 1-2 = 50%, 3-4 = 80%, 5-6 = 120% of card price.
);
};
diff --git a/src/components/GubbleStore.tsx b/src/components/GubbleStore.tsx
index 0ec33c3..5098e35 100644
--- a/src/components/GubbleStore.tsx
+++ b/src/components/GubbleStore.tsx
@@ -27,21 +27,21 @@ const UPGRADE_LIST: { key: keyof Upgrades; label: string; cost: number; descript
const GubbleStore: React.FC
= ({ isOpen, onClose, gubblePoints, upgrades, onBuyUpgrade }) => {
if (!isOpen) return null;
return (
-
-
-
-
Gubble Point Store
-
Gubble Points: {gubblePoints}
+
+
+
+
Gubble Point Store
+
Gubble Points: {gubblePoints}
{UPGRADE_LIST.map(upg => (
- -
+
-
-
{upg.label}
-
{upg.description}
-
Cost: {upg.cost}
+
{upg.label}
+
{upg.description}
+
Cost: {upg.cost}