Skip to content

Commit 7d29bff

Browse files
committed
Revert redundant free badge
1 parent 3b4308a commit 7d29bff

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/app/(app)/claw/components/AutoModelPicker.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ type PerformanceLevel = 1 | 2 | 3;
2323
type AutoModelCard = {
2424
id: string;
2525
label: string;
26-
badge?: string;
2726
description: string;
2827
icon: typeof Zap;
2928
iconBg: string;
@@ -59,7 +58,6 @@ const autoModelCards: AutoModelCard[] = [
5958
{
6059
id: KILO_AUTO_FREE_MODEL.id,
6160
label: 'Free',
62-
badge: 'FREE',
6361
description: KILO_AUTO_FREE_MODEL.description,
6462
icon: Gift,
6563
iconBg: 'bg-emerald-500/20',
@@ -183,11 +181,6 @@ export function AutoModelPicker({
183181
<div className="space-y-1">
184182
<div className="flex items-center gap-2">
185183
<span className="font-semibold">{card.label}</span>
186-
{card.badge && (
187-
<span className="rounded bg-emerald-500/20 px-1.5 py-0.5 text-[10px] font-bold leading-none text-emerald-400">
188-
{card.badge}
189-
</span>
190-
)}
191184
</div>
192185
<p className="text-muted-foreground text-xs leading-relaxed">
193186
{card.description}

0 commit comments

Comments
 (0)