Skip to content

Commit c5f100f

Browse files
committed
Fix for role search request using job description.
1 parent 41a9706 commit c5f100f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/TeamService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ async function roleSearchRequest (currentUser, data) {
769769
role = await getRoleBySkills(skills)
770770
} else {
771771
// if only job description is provided, collect skill names from description
772-
const tags = await getSkillsByJobDescription(currentUser, { description: data.jobDescription })
772+
const tags = await getSkillsByJobDescription({ description: data.jobDescription })
773773
const skills = _.map(tags, 'tag')
774774
// find the best matching role
775775
role = await getRoleBySkills(skills)

0 commit comments

Comments
 (0)