Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalshit27 committed Oct 3, 2024
1 parent 63c0bb3 commit 7d5d1a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/auth0/form/flatten.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func flattenForm(data *schema.ResourceData, form *management.Form) error {
if form.Start != nil {
result = multierror.Append(result, data.Set("start", flattenFormStart(form.Start)))
}
if form.Nodes != nil && len(form.Nodes) > 0 {
if len(form.Nodes) > 0 {
result = multierror.Append(result, data.Set("nodes", flattenFormNodes(form.Nodes)))
}
if form.Ending != nil {
Expand Down

0 comments on commit 7d5d1a8

Please sign in to comment.