Update changeset.

Signed-off-by: Aramis Sennyey <sennyeya@amazon.com>
This commit is contained in:
Aramis Sennyey
2023-03-30 11:01:09 -04:00
committed by Fredrik Adelöw
parent d3b8d08bb4
commit 44f723b8d2
+1 -1
View File
@@ -7,7 +7,7 @@ Attempt to load entity owner names in the EntityOwnerPicker through the `by-refs
**BREAKING**: `EntityOwnerFilter` now uses the full entity ref instead of the `humanizeEntityRef`. If you rely on `EntityOwnerFilter.values` or the `queryParameters.owners` of `useEntityList`, you will need to adjust your code like the following.
```tsx
const {queryParameters: {owners: oldEntityOwnerFilterRef}} = useEntityList();
const {queryParameters: {owners}} = useEntityList();
// or
const {filter: {owners}} = useEntityList();