Skip to content

Commit

Permalink
fixing import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
duytiennguyen-okta committed May 1, 2023
1 parent d4b54da commit e8d10e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okta/resource_okta_user_group_memberships.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func checkIfUserHasGroups(ctx context.Context, client *sdk.Client, userId string
if err := suppressErrorOn404(resp, err); err != nil {
return false, fmt.Errorf("unable to return groups for user (%s) from API", userId)
}
var nextUserGroups []*okta.Group
var nextUserGroups []*sdk.Group

for resp.HasNextPage() {
resp, err = resp.Next(ctx, &nextUserGroups)
Expand Down

0 comments on commit e8d10e8

Please sign in to comment.