Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JR40159 committed Jan 31, 2025
1 parent b31a5c9 commit 9938b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/clients/cognito.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export async function getGroupMembership(group: string) {
try {
results = await client.send(command)
} catch (err) {
throw InternalError('Error when querying Cognito for users.', { err })
throw InternalError('Error when querying Cognito for group membership.', { err })
}
if (!results.Users) {
return []
Expand Down

0 comments on commit 9938b11

Please sign in to comment.