Skip to content

Commit 853396c

Browse files
authored
Merge pull request #999 from CodeForPhilly/lebovits/fix-land-bank-filter
make sure land bank filter works
2 parents f2d09b4 + 7a4605b commit 853396c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Filters/Panels.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const panel_access_options: Record<
5656
...access_options[PropertyAccess.LAND_BANK],
5757
alt_description:
5858
'Properties available for discount prices from the Land Bank',
59-
dimension: 'Land Bank',
59+
dimension: 'Go through Land Bank',
6060
property: 'access_process',
6161
},
6262
[PropertyAccess.CONSERVATORSHIP]: {

src/components/PropertyAccessOptionContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const determineCardEnums = (property: any) => {
2727
unavailable.add(PropertyAccess.PRIVATE_LAND_USE);
2828
}
2929

30-
property.access_process === 'Land Bank'
30+
property.access_process === 'Go through Land Bank'
3131
? (best = PropertyAccess.LAND_BANK)
3232
: unavailable.add(PropertyAccess.LAND_BANK);
3333

0 commit comments

Comments
 (0)