Skip to content

Commit

Permalink
fix: keep request grants filters (#1440)
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosp1011 authored Jul 29, 2024
1 parent 69ed580 commit 21980b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallet/backend/src/grant/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class GrantService implements IGrantService {
}
} else {
args.filter = args.filter ?? {}
args.filter = { identifier: { in: identifiers } }
args.filter.identifier = { in: identifiers }
}

const grants = await this.rafikiAuthService.listGrantsWithPagination(args)
Expand Down

0 comments on commit 21980b0

Please sign in to comment.