@devrongx/games 0.4.30 → 0.4.32
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
|
@@ -274,7 +274,7 @@ export const PreMatchGame = ({
|
|
|
274
274
|
|
|
275
275
|
{/* Markets */}
|
|
276
276
|
<div className="w-full">
|
|
277
|
-
<div className="flex flex-col gap-3">
|
|
277
|
+
<div className="flex flex-col gap-3" key={activeFilters.has("bets_first") ? "sort-bets" : activeFilters.has("unanswered_first") ? "sort-unanswered" : "sort-default"}>
|
|
278
278
|
{visibleMarketIndices.map((mIdx) => {
|
|
279
279
|
const market = config.markets[mIdx];
|
|
280
280
|
const selection = bets[mIdx];
|
|
@@ -454,10 +454,7 @@ export const PreMatchGame = ({
|
|
|
454
454
|
);
|
|
455
455
|
})}
|
|
456
456
|
|
|
457
|
-
{/* AI Insights */}
|
|
458
|
-
<div className="col-span-2 flex justify-end pr-4 mt-3">
|
|
459
|
-
<AiInsightButton question={market.question} options={market.options.map(o => o.label)} />
|
|
460
|
-
</div>
|
|
457
|
+
{/* AI Insights — hidden for now */}
|
|
461
458
|
|
|
462
459
|
{/* Amount picker */}
|
|
463
460
|
{isPickerOpenForMarket && interactive && (
|