Cleanup the welcome screen to be less Claude focused

This commit is contained in:
Matt Rubens
2025-01-07 22:30:21 -05:00
parent 2cffbc860b
commit 525b7424fe
6 changed files with 16 additions and 31 deletions

View File

@@ -62,8 +62,6 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
const [apiErrorMessage, setApiErrorMessage] = useState<string | undefined>(undefined)
const [modelIdErrorMessage, setModelIdErrorMessage] = useState<string | undefined>(undefined)
const [commandInput, setCommandInput] = useState("")
// const [draftNewMode, setDraftNewMode] = useState(false)
const handleSubmit = () => {
const apiValidationResult = validateApiConfiguration(apiConfiguration)
@@ -196,7 +194,6 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
}}
/>
<ApiOptions
showModelOptions={true}
apiErrorMessage={apiErrorMessage}
modelIdErrorMessage={modelIdErrorMessage}
/>