Skip to content

Commit a6594b2

Browse files
committed
Clean up waiting room UI
1 parent cf23dc1 commit a6594b2

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

cli/src/components/freebuff-model-selector.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -244,15 +244,11 @@ export const FreebuffModelSelector: React.FC = () => {
244244
? 'Limit used'
245245
: ''
246246

247-
// Focused row: green border + green name to tie back to the border.
248-
// The rest of the row keeps the normal muted/secondary palette so
249-
// the highlight stays subtle. Off-focus rows are entirely default.
247+
// Focused row: green border + arrow indicator + bold name. The name
248+
// itself stays the normal foreground color so it doesn't shout — the
249+
// border and arrow do the highlighting. Off-focus rows are default.
250250
const indicator = isFocused ? '›' : ' '
251-
const fgColor = isFocused
252-
? theme.primary
253-
: canJoin
254-
? theme.foreground
255-
: theme.muted
251+
const fgColor = canJoin ? theme.foreground : theme.muted
256252
const mutedColor = theme.muted
257253
const warningColor = theme.secondary
258254
const hintColor = theme.secondary

0 commit comments

Comments
 (0)