Skip to content

Commit 21980b0

Browse files
authored
fix: keep request grants filters (#1440)
1 parent 69ed580 commit 21980b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/wallet/backend/src/grant/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class GrantService implements IGrantService {
8181
}
8282
} else {
8383
args.filter = args.filter ?? {}
84-
args.filter = { identifier: { in: identifiers } }
84+
args.filter.identifier = { in: identifiers }
8585
}
8686

8787
const grants = await this.rafikiAuthService.listGrantsWithPagination(args)

0 commit comments

Comments
 (0)