Skip to content

Commit

Permalink
fixed typescript problem
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlumbcgov committed Dec 1, 2023
1 parent 7ba03ca commit a314a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/SchoolSearchView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const fetchTypes = async () => {
'JUSTB4PRO',
'SUMMER'
] // Add the values you want to remove
types.value = response.data.filter((item) => !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 a314a6e

Please sign in to comment.