Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint
  • Loading branch information
Sg312 committed Feb 10, 2026
commit 73f2e73b4e3073b975e64752ac0a01dd7770f71b
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ import {
PopoverItem,
PopoverScrollArea,
} from '@/components/emcn'
import {
AnthropicIcon,
AzureIcon,
BedrockIcon,
GeminiIcon,
OpenAIIcon,
} from '@/components/icons'
import { AnthropicIcon, AzureIcon, BedrockIcon, GeminiIcon, OpenAIIcon } from '@/components/icons'
import { useCopilotStore } from '@/stores/panel'

interface ModelSelectorProps {
Expand Down Expand Up @@ -177,7 +171,7 @@ export function ModelSelector({ selectedModel, isNearTop, onModelSelect }: Model
</PopoverItem>
))
) : (
<div className='px-2 py-2 text-xs text-[var(--text-muted)]'>No models available</div>
<div className='px-2 py-2 text-[var(--text-muted)] text-xs'>No models available</div>
)}
</PopoverScrollArea>
</PopoverContent>
Expand Down