@devrongx/games 0.4.41 → 0.4.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -585,7 +585,7 @@ export const PreMatchGame = ({
|
|
|
585
585
|
|
|
586
586
|
<div className="flex items-stretch justify-between gap-3">
|
|
587
587
|
{/* Left — text area */}
|
|
588
|
-
<div className="flex flex-col gap-2 flex-1 min-w-0">
|
|
588
|
+
<div className="flex flex-col gap-2 flex-1 min-w-0 overflow-hidden">
|
|
589
589
|
{/* Remaining balance */}
|
|
590
590
|
<AnimatePresence>
|
|
591
591
|
{remainingBalance > 0 && (
|
|
@@ -711,8 +711,8 @@ export const PreMatchGame = ({
|
|
|
711
711
|
)}
|
|
712
712
|
</AnimatePresence>
|
|
713
713
|
|
|
714
|
-
{/* Combined Bets (Parlays) */}
|
|
715
|
-
<div className="mt-4">
|
|
714
|
+
{/* Combined Bets (Parlays) — hidden until v2 */}
|
|
715
|
+
{false && <div className="mt-4">
|
|
716
716
|
{hasAnyParlays ? (
|
|
717
717
|
<>
|
|
718
718
|
<div className="flex items-center gap-2 mb-1">
|
|
@@ -835,7 +835,7 @@ export const PreMatchGame = ({
|
|
|
835
835
|
</button>
|
|
836
836
|
</div>
|
|
837
837
|
)}
|
|
838
|
-
</div>
|
|
838
|
+
</div>}
|
|
839
839
|
</div>
|
|
840
840
|
|
|
841
841
|
{/* Leaderboard & Potential Payouts */}
|