Skip to content

Commit

Permalink
typescript fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlumbcgov committed Dec 1, 2023
1 parent a314a6e commit 1e34d0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/views/SchoolSearchView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ const fetchTypes = async () => {
'JUSTB4PRO',
'SUMMER'
] // Add the values you want to remove
types.value = response.data.filter(item: any) => !valuesToRemove.includes(item.facilityTypeCode))
types.value = response.data.filter(
(item: any) => !valuesToRemove.includes(item.facilityTypeCode)
)
} catch (error) {
console.error('Error fetching types:', error)
}
Expand Down

0 comments on commit 1e34d0a

Please sign in to comment.