refactor: update input placeholder text from "Enter model ID" to "Enter model" in onboarding modal and settings dialog

This commit is contained in:
tusharmagar 2026-02-16 16:37:30 +05:30
parent 6b0f31c369
commit 3ee1c2f2ab
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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