mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-28 18:06:30 +02:00
refactor: update input placeholder text from "Enter model ID" to "Enter model" in onboarding modal and settings dialog
This commit is contained in:
parent
6b0f31c369
commit
3ee1c2f2ab
2 changed files with 2 additions and 2 deletions
|
|
@ -666,7 +666,7 @@ export function OnboardingModal({ open, onComplete }: OnboardingModalProps) {
|
|||
<Input
|
||||
value={activeConfig.model}
|
||||
onChange={(e) => updateProviderConfig(llmProvider, { model: e.target.value })}
|
||||
placeholder="Enter model ID"
|
||||
placeholder="Enter model"
|
||||
/>
|
||||
) : (
|
||||
<Select
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ function ModelSettings({ dialogOpen }: { dialogOpen: boolean }) {
|
|||
<Input
|
||||
value={activeConfig.model}
|
||||
onChange={(e) => updateConfig(provider, { model: e.target.value })}
|
||||
placeholder="Enter model ID"
|
||||
placeholder="Enter model"
|
||||
/>
|
||||
) : (
|
||||
<Select
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue