Skip to content

Commit

Permalink
Merge pull request #999 from CodeForPhilly/lebovits/fix-land-bank-filter
Browse files Browse the repository at this point in the history
make sure land bank filter works
  • Loading branch information
nlebovits authored Nov 14, 2024
2 parents f2d09b4 + 7a4605b commit 853396c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Filters/Panels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const panel_access_options: Record<
...access_options[PropertyAccess.LAND_BANK],
alt_description:
'Properties available for discount prices from the Land Bank',
dimension: 'Land Bank',
dimension: 'Go through Land Bank',
property: 'access_process',
},
[PropertyAccess.CONSERVATORSHIP]: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/PropertyAccessOptionContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const determineCardEnums = (property: any) => {
unavailable.add(PropertyAccess.PRIVATE_LAND_USE);
}

property.access_process === 'Land Bank'
property.access_process === 'Go through Land Bank'
? (best = PropertyAccess.LAND_BANK)
: unavailable.add(PropertyAccess.LAND_BANK);

Expand Down

0 comments on commit 853396c

Please sign in to comment.