Revert "tui: display 'Free' badge for zero-cost models in model selection dialog"

This reverts commit ce9b758d0a.
This commit is contained in:
Aiden Cline
2025-11-08 23:48:18 -06:00
parent d85eb1b880
commit 4b1668c3ef
2 changed files with 3 additions and 11 deletions

View File

@@ -30,7 +30,7 @@ export interface DialogSelectOption<T = any> {
title: string
value: T
description?: string
footer?: JSX.Element | string
footer?: string
category?: string
disabled?: boolean
bg?: RGBA
@@ -172,6 +172,7 @@ export function DialogSelect<T>(props: DialogSelectProps<T>) {
props.onFilter?.(e)
})
}}
onKeyDown={(e) => {}}
focusedBackgroundColor={theme.backgroundPanel}
cursorColor={theme.primary}
focusedTextColor={theme.textMuted}
@@ -255,7 +256,7 @@ function Option(props: {
description?: string
active?: boolean
current?: boolean
footer?: JSX.Element | string
footer?: string
onMouseOver?: () => void
}) {
const { theme } = useTheme()