fix(i18n): remove hardcoded defaultValue and unused placeholder for reasoning model

This commit is contained in:
Jason
2026-01-03 12:04:34 +08:00
parent 0a9de282a3
commit 2105f2d05b
4 changed files with 1 additions and 9 deletions
@@ -222,9 +222,7 @@ export function ClaudeFormFields({
{/* 推理模型 */}
<div className="space-y-2">
<FormLabel htmlFor="reasoningModel">
{t("providerForm.anthropicReasoningModel", {
defaultValue: "推理模型 (Thinking)",
})}
{t("providerForm.anthropicReasoningModel")}
</FormLabel>
<Input
id="reasoningModel"
@@ -233,9 +231,6 @@ export function ClaudeFormFields({
onChange={(e) =>
onModelChange("ANTHROPIC_REASONING_MODEL", e.target.value)
}
placeholder={t("providerForm.reasoningModelPlaceholder", {
defaultValue: "",
})}
autoComplete="off"
/>
</div>