Skip to content

Commit

Permalink
fix(3795): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
junminahn committed Sep 19, 2024
1 parent 13ab205 commit c05af9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/api/public-cloud/aws-roles/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ async function listSubGroups({ parentId, search }: { parentId: string; search?:

while (true) {
const groups = await kcAdminClient.groups.listSubGroups({ parentId, search, first, max });
if (groups.length < max) break;
subGroups.push(...groups);
if (groups.length < max) break;
first += 1;
}

Expand Down

0 comments on commit c05af9b

Please sign in to comment.