Skip to content

Commit

Permalink
fixes for SDCI-94
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltangbcgov committed Feb 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5aba82f commit c73aef4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/views/ContactsView.vue
Original file line number Diff line number Diff line change
@@ -55,7 +55,8 @@ const transformContactForDownload = (inputData: any) => {
}
const filterOutYukon = (inputData: any) => {
return inputData.filter(
(contact) => contact.districtId !== '54396317-b444-063d-779e-e4d42ff7634f'
(contact: { districtId: string }) =>
contact.districtId !== '54396317-b444-063d-779e-e4d42ff7634f'
)
}
const searchContact = async () => {

0 comments on commit c73aef4

Please sign in to comment.