Skip to content

Commit

Permalink
fixed linitng
Browse files Browse the repository at this point in the history
  • Loading branch information
duedares-rvj committed Jan 14, 2025
1 parent c168164 commit e67f1a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/auth0/tokenexchangeprofile/flatten.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ func flattenTokenExchangeProfile(data *schema.ResourceData, tokenExchangeProfile
data.Set("subject_token_type", tokenExchangeProfile.SubjectTokenType),
data.Set("action_id", tokenExchangeProfile.GetActionID()),
data.Set("type", tokenExchangeProfile.GetType()),
// Data.Set("created_at", tokenExchangeProfile.GetCreatedAt()),
//data.Set("updated_at", tokenExchangeProfile.GetUpdatedAt()),.
data.Set("created_at", tokenExchangeProfile.GetCreatedAt()),
data.Set("updated_at", tokenExchangeProfile.GetUpdatedAt()),
)
return result.ErrorOrNil()
}

0 comments on commit e67f1a2

Please sign in to comment.