File tree Expand file tree Collapse file tree
src/app/(app)/claw/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ type PerformanceLevel = 1 | 2 | 3;
2323type 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 }
You can’t perform that action at this time.
0 commit comments