build: 前端构建成功
This commit is contained in:
parent
4318b8392a
commit
54dd21f18b
|
|
@ -36,7 +36,7 @@ export function DropdownSelector<T extends string>({
|
|||
{selectedOption?.label ?? value}
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent className={contentClassName}>
|
||||
<DropdownMenuRadioGroup value={value} onValueChange={onChange}>
|
||||
<DropdownMenuRadioGroup value={value} onValueChange={(v) => onChange(v as T)}>
|
||||
{options.map((option) => (
|
||||
<DropdownMenuRadioItem key={option.value} value={option.value}>
|
||||
{option.label}
|
||||
|
|
|
|||
|
|
@ -70,6 +70,7 @@ export const enUS: Translations = {
|
|||
createSkillPrompt:
|
||||
"We're going to build a new skill step by step with `skill-creator`. To start, what do you want this skill to do?",
|
||||
addAttachments: "Add attachments",
|
||||
selectSkill: "Select Skill",
|
||||
mode: "Mode",
|
||||
flashMode: "Flash",
|
||||
flashModeDescription: "Fast and efficient, but may not be accurate",
|
||||
|
|
|
|||
Loading…
Reference in New Issue