Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
dmihai committed Jun 19, 2024
1 parent 7a5bf04 commit ddcc5b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/resources/grafana/resource_sso_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,8 @@ func getSettingsFromResourceData(d *schema.ResourceData, settingsKey string) (ma
for _, item := range settingsList {
settings := item.(map[string]any)

clientId, ok := settings["client_id"]
if ok && clientId != "" {
clientID, ok := settings["client_id"]
if ok && clientID != "" {
return settings, nil
}

Expand Down

0 comments on commit ddcc5b2

Please sign in to comment.