Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmJSD committed Feb 10, 2023
1 parent 8acf44c commit 1c18eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/ignite.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func (f *PresetFormField) UnmarshalJSON(b []byte) error {
v = &PresetFormInputRange{}
}
err = json.Unmarshal(x.Input, v)
f.Input = v.(PresetFormInput)
f.Input, _ = v.(PresetFormInput)
return err
}

Expand Down

0 comments on commit 1c18eec

Please sign in to comment.