Skip to content

Commit 2723a92

Browse files
author
m.buchhorn-roth
committed
fix: hide trend badges from problem cards
1 parent d4f35b2 commit 2723a92

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,14 +604,17 @@ function App() {
604604
{challenge.statLabel}
605605
</div>
606606
</div>
607-
<Badge variant="secondary" className="text-sm font-semibold">
607+
<Badge variant="secondary" className="text-sm font-semibold" style={{ display: 'none' }}>
608608
<TrendingUp className="h-3 w-3 mr-1" />
609609
{challenge.trend}
610610
</Badge>
611611
</div>
612612
</div>
613613
</div>
614614
</CardHeader>
615+
<CardContent>
616+
<p className="text-muted-foreground leading-relaxed">{challenge.description}</p>
617+
</CardContent>
615618
</Card>
616619
</motion.div>
617620
)

0 commit comments

Comments
 (0)