Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gmgigi96 committed Mar 9, 2023
1 parent 403e0a9 commit 30dab51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/cbox/group/rest/rest.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,7 @@ func (m *manager) fetchAllGroupAccounts() error {
}

// filter computing groups
is, ok := groupData["isComputingGroup"].(bool)
if ok && is {
if is, ok := groupData["isComputingGroup"].(bool); ok && is {
continue
}

Expand Down

0 comments on commit 30dab51

Please sign in to comment.