Skip to content

Commit 73f2e73

Browse files
committed
Fix lint
1 parent b5b0c39 commit 73f2e73

File tree

1 file changed

+2
-8
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/user-input/components/model-selector

1 file changed

+2
-8
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/user-input/components/model-selector/model-selector.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ import {
99
PopoverItem,
1010
PopoverScrollArea,
1111
} from '@/components/emcn'
12-
import {
13-
AnthropicIcon,
14-
AzureIcon,
15-
BedrockIcon,
16-
GeminiIcon,
17-
OpenAIIcon,
18-
} from '@/components/icons'
12+
import { AnthropicIcon, AzureIcon, BedrockIcon, GeminiIcon, OpenAIIcon } from '@/components/icons'
1913
import { useCopilotStore } from '@/stores/panel'
2014

2115
interface ModelSelectorProps {
@@ -177,7 +171,7 @@ export function ModelSelector({ selectedModel, isNearTop, onModelSelect }: Model
177171
</PopoverItem>
178172
))
179173
) : (
180-
<div className='px-2 py-2 text-xs text-[var(--text-muted)]'>No models available</div>
174+
<div className='px-2 py-2 text-[var(--text-muted)] text-xs'>No models available</div>
181175
)}
182176
</PopoverScrollArea>
183177
</PopoverContent>

0 commit comments

Comments
 (0)