This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1627,6 +1627,23 @@ export default function PredictionCard({ prediction }: PredictionCardProps) {
|
||||
)}
|
||||
ui={ui}
|
||||
/>
|
||||
{(prediction as unknown as Record<string, unknown>).ai_expert_commentary ? (
|
||||
<Card.Root bg={cardBg} borderColor={borderColor} borderRadius="2xl">
|
||||
<Card.Body gap={3}>
|
||||
<SectionTitle
|
||||
icon={LuBrain}
|
||||
title={uiText("ai-expert-commentary-title", "AI Uzman Yorumu")}
|
||||
info={uiText(
|
||||
"ai-expert-commentary-info",
|
||||
"Yapay zekanın maç verilerini okuyarak ürettiği uzman bahis analizi.",
|
||||
)}
|
||||
/>
|
||||
<Text fontSize="sm" color="fg.muted" lineHeight="1.7">
|
||||
{String((prediction as unknown as Record<string, unknown>).ai_expert_commentary)}
|
||||
</Text>
|
||||
</Card.Body>
|
||||
</Card.Root>
|
||||
) : null}
|
||||
{prediction.match_commentary?.headline ||
|
||||
prediction.match_commentary?.summary ? (
|
||||
<Card.Root bg={cardBg} borderColor={borderColor} borderRadius="2xl">
|
||||
|
||||
Reference in New Issue
Block a user