Fix prettier formatting on the new combobox control
Release / release (push) Successful in 1m5s

This commit is contained in:
2026-08-16 17:23:30 +02:00
parent c7bc4421c5
commit 86aa0b7539
2 changed files with 4 additions and 4 deletions
+1 -3
View File
@@ -223,9 +223,7 @@ export function FieldRenderer({ variable }: { variable: ClientVariable }) {
</FormLabel>
<FormControl>
<Combobox
choices={
variable.type === "enum" ? variable.choices : []
}
choices={variable.type === "enum" ? variable.choices : []}
value={field.value ?? ""}
onChange={(value) => field.onChange(value)}
/>