Skip to content

Commit

Permalink
Fixes filter by (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 authored Mar 20, 2024
1 parent a53bc66 commit b7831f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/cli",
"description": "Small package containing useful typescript utilities.",
"version": "4.132.1",
"version": "4.132.2",
"homepage": "https://github.com/transcend-io/cli",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/consent-manager/fetchConsentPreferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function fetchConsentPreferences(
.post('v1/consent-preferences', {
json: {
partition,
...(Object.values(filterBy).length > 0 ? { filterBy } : {}),
...filterBy,
// using lastKey to paginate if it exists (will not for first iteration)
startKey: currentLastKey || undefined,
limit,
Expand Down

0 comments on commit b7831f7

Please sign in to comment.