Skip to content

Commit

Permalink
fix: remove ununsed const
Browse files Browse the repository at this point in the history
  • Loading branch information
l1shen committed Dec 10, 2024
1 parent 13b0340 commit afbabae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions webview-ui/src/components/settings/ApiOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
ModelInfo,
anthropicDefaultModelId,
anthropicModels,
azureOpenAiDefaultApiVersion,
bedrockDefaultModelId,
bedrockModels,
geminiDefaultModelId,
Expand Down Expand Up @@ -47,7 +46,6 @@ const ApiOptions = ({ showModelOptions, apiErrorMessage, modelIdErrorMessage }:
const [ollamaModels, setOllamaModels] = useState<string[]>([])
const [lmStudioModels, setLmStudioModels] = useState<string[]>([])
const [anthropicBaseUrlSelected, setAnthropicBaseUrlSelected] = useState(!!apiConfiguration?.anthropicBaseUrl)
const [azureApiVersionSelected, setAzureApiVersionSelected] = useState(!!apiConfiguration?.azureApiVersion)
const [isDescriptionExpanded, setIsDescriptionExpanded] = useState(false)

const handleInputChange = (field: keyof ApiConfiguration) => (event: any) => {
Expand Down

0 comments on commit afbabae

Please sign in to comment.