Skip to content

Commit a67cd15

Browse files
committed
Lint fixes for build
1 parent 95881ce commit a67cd15

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/apps/talent-search/src/components/skill-search-results/SkillSearchResults.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
// }
9595
// })
9696
// // Move the values that were searched to the front of the skills list for display in the UI
97-
// value.emsiSkills.sort((a, b) => ((a.isSearched && b.isSearched) ? a.name.localeCompare(b.name)
97+
// value.emsiSkills.sort((a, b) => ((a.isSearched && b.isSearched) ?
98+
// a.name.localeCompare(b.name)
9899
// : (a.isSearched ? -1 : 0)))
99100
// })
100101
// }

src/apps/talent-search/src/lib/models/Member.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import MemberAddress from './MemberAddress';
1+
import MemberAddress from './MemberAddress'
22
import MemberEmsiSkill from './MemberEmsiSkill'
33
import MemberMaxRating from './MemberMaxRating'
44
import MemberStats from './MemberStats'

src/libs/shared/lib/services/emsi-skills/emsi-skills.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { EnvironmentConfig } from '~/config'
2-
import { xhrDeleteAsync, xhrGetAsync, xhrPostAsync, xhrPutAsync } from '~/libs/core'
2+
import { xhrGetAsync, xhrPostAsync, xhrPutAsync } from '~/libs/core'
33

44
import { EmsiSkill, Skill } from './skill.model'
55

0 commit comments

Comments
 (0)