Skip to content

Commit

Permalink
Fixes wrong .id on normalize function
Browse files Browse the repository at this point in the history
  • Loading branch information
dasansol92 committed Mar 10, 2022
1 parent a240732 commit 046b399
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const normalizBlocklistsPageLocation = (
? { pageSize: location.pageSize }
: {}),
...(!isDefaultOrMissing(location.show, undefined) ? { show: location.show } : {}),
...(!isDefaultOrMissing(location.itemId, undefined) ? { id: location.id } : {}),
...(!isDefaultOrMissing(location.itemId, undefined) ? { id: location.itemId } : {}),
...(!isDefaultOrMissing(location.filter, '') ? { filter: location.filter } : ''),
...(!isDefaultOrMissing(location.includedPolicies, '')
? { includedPolicies: location.includedPolicies }
Expand Down

0 comments on commit 046b399

Please sign in to comment.