diff --git a/client/src/containers/analysis-eudr/category-list/breakdown/deforestation-free-suppliers/index.tsx b/client/src/containers/analysis-eudr/category-list/breakdown/deforestation-free-suppliers/index.tsx index b2292ac63..06e09e945 100644 --- a/client/src/containers/analysis-eudr/category-list/breakdown/deforestation-free-suppliers/index.tsx +++ b/client/src/containers/analysis-eudr/category-list/breakdown/deforestation-free-suppliers/index.tsx @@ -24,7 +24,7 @@ const DeforestationFreeSuppliersBreakdown = () => { producerIds: suppliers?.map(({ value }) => value), materialIds: materials?.map(({ value }) => value), originIds: origins?.map(({ value }) => value), - geoRegiondIds: plots?.map(({ value }) => value), + geoRegionIds: plots?.map(({ value }) => value), }, { select: (data) => data?.breakDown, diff --git a/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-deforestation-alerts/index.tsx b/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-deforestation-alerts/index.tsx index 3ad6a56d3..cf701755e 100644 --- a/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-deforestation-alerts/index.tsx +++ b/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-deforestation-alerts/index.tsx @@ -24,7 +24,7 @@ const SuppliersWithDeforestationAlertsBreakdown = () => { producerIds: suppliers?.map(({ value }) => value), materialIds: materials?.map(({ value }) => value), originIds: origins?.map(({ value }) => value), - geoRegiondIds: plots?.map(({ value }) => value), + geoRegionIds: plots?.map(({ value }) => value), }, { select: (data) => data?.breakDown, diff --git a/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-no-location-data/index.tsx b/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-no-location-data/index.tsx index 0a9dba4b9..75665d596 100644 --- a/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-no-location-data/index.tsx +++ b/client/src/containers/analysis-eudr/category-list/breakdown/suppliers-with-no-location-data/index.tsx @@ -24,7 +24,7 @@ const SuppliersWithNoLocationDataBreakdown = () => { producerIds: suppliers?.map(({ value }) => value), materialIds: materials?.map(({ value }) => value), originIds: origins?.map(({ value }) => value), - geoRegiondIds: plots?.map(({ value }) => value), + geoRegionIds: plots?.map(({ value }) => value), }, { select: (data) => data?.breakDown, diff --git a/client/src/containers/analysis-eudr/category-list/index.tsx b/client/src/containers/analysis-eudr/category-list/index.tsx index 7fce86af5..9c15de6dd 100644 --- a/client/src/containers/analysis-eudr/category-list/index.tsx +++ b/client/src/containers/analysis-eudr/category-list/index.tsx @@ -52,7 +52,7 @@ export const CategoryList = (): JSX.Element => { producerIds: suppliers?.map(({ value }) => value), materialIds: materials?.map(({ value }) => value), originIds: origins?.map(({ value }) => value), - geoRegiondIds: plots?.map(({ value }) => value), + geoRegionIds: plots?.map(({ value }) => value), }, { select: (data) => data?.breakDown, diff --git a/client/src/hooks/eudr/index.ts b/client/src/hooks/eudr/index.ts index 281bcaf0d..309fb19b3 100644 --- a/client/src/hooks/eudr/index.ts +++ b/client/src/hooks/eudr/index.ts @@ -156,7 +156,7 @@ export const useEUDRData = ( producerIds?: string[]; materialIds?: string[]; originIds?: string[]; - geoRegiondIds?: string[]; + geoRegionIds?: string[]; }, options: UseQueryOptions = {}, ) => {