Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsingal committed Mar 19, 2024
1 parent 0ee456d commit 10837c6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion client/src/hooks/eudr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const useEUDRData = <T = unknown>(
producerIds?: string[];
materialIds?: string[];
originIds?: string[];
geoRegiondIds?: string[];
geoRegionIds?: string[];
},
options: UseQueryOptions<EUDRData, unknown, T> = {},
) => {
Expand Down

0 comments on commit 10837c6

Please sign in to comment.