Skip to content

Commit

Permalink
[front] Fix error in poke plugin (#8075)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdraier authored Oct 16, 2024
1 parent 5431148 commit 92bb861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/components/poke/plugins/PluginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function PluginForm({ manifest, onSubmit }: PluginFormProps) {
)}
{arg.type === "enum" && (
<PokeSelect
value={field.value.toString()}
value={field.value ? field.value.toString() : ""}
onValueChange={field.onChange}
>
<PokeFormControl>
Expand Down

0 comments on commit 92bb861

Please sign in to comment.