Skip to content

Commit

Permalink
network: edge zone normalization can be done using the value directly…
Browse files Browse the repository at this point in the history
…, rather than via a pointer
  • Loading branch information
tombuildsstuff committed Jul 25, 2023
1 parent 3dde25b commit 7138dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/network/edge_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ func flattenEdgeZoneModel(input *edgezones.Model) string {
if input == nil || input.Name == "" {
return ""
}
return edgezones.NormalizeNilable(&input.Name)
return edgezones.Normalize(input.Name)
}

0 comments on commit 7138dd6

Please sign in to comment.